home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 December / PCWorld_2005-12_cd.bin / software / vyzkuste / pspad / pspad433inst_cz.exe / {app} / Context / PHP.def < prev    next >
Text File  |  2005-02-09  |  530KB  |  13,606 lines

  1. ; Tento soubor obsahuje makra programu PSPad pro PHP
  2. ;
  3. ;; PSPad code template for PHP
  4. ;; Author: Krystof Slaby
  5. ;; E-mail: krystof.slaby@seznam.cz
  6. ;; Update: $LastChangedDate: 2003-12-08 00:06:21 +0100 (Mon, 08 Dec 2003) $
  7. ;; Revision: $LastChangedRevision: 54 $
  8. ;
  9. ; User-defined templates patri na konec souboru.
  10. ;
  11. ; VERSION 1
  12. ; autor: Frantisek Blaha  F.Blaha@WorldOnline.cz
  13. ; podklady ziskany z puvodniho PHP manualu vydaneho Official PHP Documentation Group dne 2.9.2001
  14. ; posledni revize: 23.9.2001
  15. ;
  16. ; VERSION 1.1
  17. ; modifikace: Krystof Slaby (krystof.slaby@seznam.cz)
  18. ; pridano: control structures, reserved words, declarations
  19. ; datum modifikace: 26.1.2003
  20. ; TODO: refine due to last php manual version
  21. ;
  22. ; VERSION 1.2
  23. ; Karel Pavelka  webjob@seznam.cz
  24. ; datum modifikace: 11.5.2003
  25. ; dalsi preklad a doplneni funkci pro MySQL z manualu PHP
  26. ;
  27. ; VERSION 1.3
  28. ; modifikace: Krystof Slaby (krystof.slaby@seznam.cz)
  29. ; datum: 2003-06-30
  30. ; popis:
  31. ;     seznam funkci podle posledniho php manualu (generuje se z xml verze php reference manual)
  32. ;     PEAR coding standards compliant
  33. ;     u funkci odstraneny stredniky
  34. ;
  35. ; VERSION 1.4
  36. ; modifikace: Krystof Slaby (krystof.slaby@seznam.cz)
  37. ; datum: 2003-11-24
  38. ; popis:
  39. ;     seznam funkci podle posledniho php manualu
  40. ;     nektere control structures jsou nyni interaktivni
  41. ;
  42. ;
  43. [Macro definition]
  44. %name%=@C name:,,,,
  45. %description%=@C description:,,,,
  46. %param1%=@C parameter:,,,,
  47. %param2%=@C parameter:,", ",,,
  48. %param3%=@C parameter:,", ",,,
  49. %param4%=@C parameter:,", ",,,
  50. %param5%=@C parameter:,", ",,,
  51. %extends%=@C extends:,,,,
  52. %type%=@C type:,,,mixed;boolean;number;integer;float;string;array;object;resource;NULL;callback;void,
  53. %return%=@C returns:,,void,mixed;boolean;number;integer;float;string;array;object;resource;NULL;callback;void,
  54. %type1%=@C type:,,,;boolean;integer;float;string;array;object;resource;callback,
  55. %type2%=@C type:,,,;boolean;integer;float;string;array;object;resource;callback,
  56. %type3%=@C type:,,,;boolean;integer;float;string;array;object;resource;callback,
  57. %type4%=@C type:,,,;boolean;integer;float;string;array;object;resource;callback,
  58. %type5%=@C type:,,,;boolean;integer;float;string;array;object;resource;callback,
  59. %sourcefile%=@O file:,,,PHP files (*.php;*.inc)|*.php;*.inc,',R\
  60. %package%=@C package:,,,,
  61. %access%=@C access:,,public,public;private,
  62. %static%=@K static:,@static
  63. %abstract%=@K abstract:,@abstract
  64. %final%=@K final:,@final
  65. ;
  66. ;
  67. ; -----------------------------------------------------------------------------
  68. ; comments
  69. ; -----------------------------------------------------------------------------
  70. [comment | komentß° /* ... */ ]
  71. /*
  72.     º|
  73. */
  74. ;
  75. ;
  76. ; -----------------------------------------------------------------------------
  77. ; (X)HTML text entities
  78. ; -----------------------------------------------------------------------------
  79. [  | ned∞litelnß mezera]*Ctrl+Shift+Space
  80.  
  81. [& | ampersand]
  82. &
  83. [® | registered]
  84. ®
  85. [© | copyright]
  86. ©
  87. [> | znak v∞tÜφ ne₧ ">"]
  88. >
  89. [< | znak manÜφ ne₧ "<"]
  90. <
  91. [" | uvozovky]
  92. "
  93. [' | apostrof]
  94. '
  95. [br | linebreak]*Ctrl+Enter
  96. <br />
  97. ;
  98. ;
  99. ; -----------------------------------------------------------------------------
  100. ; control structures
  101. ; -----------------------------------------------------------------------------
  102. [php | php escaping PI <?php ... ?>]
  103. <?php
  104.     º|
  105. ?>
  106. [if | if statement]
  107. if (|) {
  108.     º
  109. }
  110. [elseif | elseif statement]
  111. elseif (|) {
  112.     º
  113. }
  114. [else | else statement]
  115. else {
  116.     º|
  117. }
  118. [while | while statement]
  119. while (|) {
  120.     º
  121. }
  122. [dowhile | do .. while statement]
  123. do {
  124.     º|
  125. } while ();
  126. [for | for statement]
  127. for (|; ; ) {
  128.     º
  129. }
  130. [foreach | foreach statement]
  131. foreach (| as $key=>$value) {
  132.     º
  133. }
  134. [break | break statement]
  135. break;
  136. [continue | continue statement]
  137. continue;
  138. [switch | switch statement]
  139. switch (|) {
  140. default:
  141.     º
  142.     break;
  143. }
  144. [case | switch case statement]
  145. case |:
  146.     break;
  147. [declare | declare statement]
  148. declare (ticks=|) {
  149.     º
  150. }
  151. [return | return statement]
  152. return |;
  153. [require | require statement]
  154. require %sourcefile%|;
  155. [include | include statement]
  156. include %sourcefile%|;
  157. [require_once | require_once statement]
  158. require_once %sourcefile%|;
  159. [include_once | include_once statement]
  160. include_once %sourcefile%|;
  161. [function | function declaration]*Ctrl+Alt+Shift+F
  162. function %name%(%param1%%param2%%param3%%param4%%param5%)
  163. { // BEGIN function %name%
  164.     º|
  165. } // END function %name%
  166. [class | class declaration]
  167. class %name%
  168. { // BEGIN class %name%
  169.     // variables
  170.     var $|;
  171.  
  172.     // constructor
  173.     function %name%(%param1%%param2%%param3%%param4%%param5%)
  174.     { // BEGIN constructor
  175.         º
  176.     } // END constructor
  177. } // END class %name%
  178.  
  179. [class_extends | extending class declaration]*Ctrl+Alt+Shift+C
  180. class %name% extends %extends%
  181. {
  182.     // variables
  183.     var $|;
  184.  
  185.     // constructor
  186.     function %name%(%param1%%param2%%param3%%param4%%param5%)
  187.     { // BEGIN constructor
  188.         º
  189.         return $this->%extends%(%param1%%param2%%param3%%param4%%param5%);
  190.     } // END constructor
  191. } // END class %name%
  192.  
  193. [method | method declaration]*Ctrl+Alt+Shift+M
  194. function %name%(%param1%%param2%%param3%%param4%%param5%)
  195. { // BEGIN method %name%
  196.     º|
  197. } // END method %name%
  198. ;
  199. ;
  200. ; -----------------------------------------------------------------------------
  201. ; PEAR compliant declarations
  202. ; -----------------------------------------------------------------------------
  203. [class_PEAR | class declaration PEAR compliant]
  204. // =============================================================================
  205. /**
  206.  * Singleline description of class %name%.
  207.  *
  208.  * Multi line
  209.  * description
  210.  * of class %name%.
  211.  *
  212.  * @author %FullName% <%Email%>
  213.  * @package %package%
  214.  * @version 0.1
  215.  * %static% %abstract%
  216.  */
  217. class %name% extends %extends%
  218. // =============================================================================
  219. { // BEGIN class %name%
  220.  
  221.     |
  222.  
  223.     // -------------------------------------------------------------------------
  224.     /**
  225.      * Constructor
  226.      *
  227.      * @param %type1% %param1%
  228.      * @param %type2% %param2%
  229.      * @param %type3% %param3%
  230.      * @param %type4% %param4%
  231.      * @param %type5% %param5%
  232.      * @return object %name% new %name% object
  233.      */
  234.     function %name%(%param1%%param2%%param3%%param4%%param5%)
  235.     // -------------------------------------------------------------------------
  236.     { // BEGIN constructor
  237.         return $this->%extends%(%param1%%param2%%param3%%param4%%param5%);
  238.     } // END constructor
  239.  
  240. } // END class
  241.  
  242. [method_PEAR | method declaration PEAR compliant]
  243. // -------------------------------------------------------------------------
  244. /**
  245.  * Single line description of method %name%.
  246.  *
  247.  * Multi line
  248.  * description
  249.  * of method %name%.
  250.  *
  251.  * @param %type1% %param1%
  252.  * @param %type2% %param2%
  253.  * @param %type3% %param3%
  254.  * @param %type4% %param4%
  255.  * @param %type5% %param5%
  256.  * @return %return%
  257.  * %static% %abstract% %final%
  258.  */
  259. function %name%(%param1%%param2%%param3%%param4%%param5%)
  260. // -------------------------------------------------------------------------
  261. { // BEGIN method %name%
  262.     |
  263. } // END method %name%
  264.  
  265. [function_PEAR | function declaration PEAR compliant]
  266. // -------------------------------------------------------------------------
  267. /**
  268.  * Single line description of function %name%.
  269.  *
  270.  * Multi line
  271.  * description
  272.  * of function %name%.
  273.  *
  274.  * @param %type1% %param1%
  275.  * @param %type2% %param2%
  276.  * @param %type3% %param3%
  277.  * @param %type4% %param4%
  278.  * @param %type5% %param5%
  279.  * @return %return%
  280.  */
  281. function %name%(%param1%%param2%%param3%%param4%%param5%)
  282. // -------------------------------------------------------------------------
  283. { // BEGIN function %name%
  284.     |
  285. } // END function %name%
  286.  
  287. [variable_PEAR | variable declaration PEAR compliant]
  288. /**
  289.  * variable %name%
  290.  * @var %type% %description%|
  291.  */
  292. var $%name%;
  293. ;
  294. ;
  295. ; -----------------------------------------------------------------------------
  296. ; miscelanous functions and pseudo-functions
  297. ; -----------------------------------------------------------------------------
  298. [connection_aborted | Returns TRUE if client disconnected]
  299. connection_aborted()|
  300. [connection_status | Returns connection status bitfield]
  301. connection_status()|
  302. [constant | Returns the value of a constant]
  303. constant(|string name)
  304. [define | Defines a named constant]
  305. define(|string name, mixed value [, bool case_insensitive])
  306. [defined | Checks whether a given named constant exists]
  307. defined(|string name)
  308. [die | Output a message and terminate the current script]
  309. die(|)
  310. [eval | Evaluate a string as PHP code]
  311. eval(|string code_str)
  312. [exit | Output a message and terminate the current script]
  313. exit(|int/string status)
  314. [get_browser | Tells what the user's browser is capable of]
  315. get_browser(|[string user_agent])
  316. [highlight_file | Syntax highlighting of a file]
  317. highlight_file(|string filename [, bool return])
  318. [highlight_string | Syntax highlighting of a string]
  319. highlight_string(|string str [, bool return])
  320. [ignore_user_abort | Set whether a client disconnect should abort script execution]
  321. ignore_user_abort(|[int setting])
  322. [pack | Pack data into binary string]
  323. pack(|string format [, mixed args])
  324. [show_source | Syntax highlighting of a file]
  325. show_source(|string filename [, bool return])
  326. [sleep | Delay execution]
  327. sleep(|int seconds)
  328. [uniqid | Generate a unique ID]
  329. uniqid(|string prefix [, bool lcg])
  330. [unpack | Unpack data from binary string]
  331. unpack(|string format, string data)
  332. [usleep | Delay execution in microseconds]
  333. usleep(|int micro_seconds)
  334. [echo | Outputs all arguments]*Ctrl+Alt+Shift+E
  335. echo º|;
  336. [print | Outputs argument]*Ctrl+Alt+Shift+P
  337. print º|;
  338. ;
  339. ;
  340. ; -----------------------------------------------------------------------------
  341. ; functions
  342. ; -----------------------------------------------------------------------------
  343. ;; -----------------------------------------------------------------------------
  344. ; Apache - Apache-specific Functions
  345. ; -----------------------------------------------------------------------------
  346. [apache_child_terminate | Terminate apache process after this request, returns bool]
  347. apache_child_terminate()|
  348. [apache_get_version | Fetch Apache version, returns string]
  349. apache_get_version()|
  350. [apache_lookup_uri | Perform a partial request for the specified URI and return all info about it, returns object]
  351. apache_lookup_uri(|string filename)
  352. [apache_note | Get and set apache request notes, returns string]
  353. apache_note(|string note_name, [string note_value])
  354. [apache_request_headers | Fetch all HTTP request headers, returns array]
  355. apache_request_headers()|
  356. [apache_response_headers | Fetch all HTTP response headers, returns array]
  357. apache_response_headers()|
  358. [apache_setenv | Set an Apache subprocess_env variable, returns int]
  359. apache_setenv(|string variable, string value, [bool walk_to_top])
  360. [ascii2ebcdic | Translate string from ASCII to EBCDIC, returns int]
  361. ascii2ebcdic(|string ascii_str)
  362. [ebcdic2ascii | Translate string from EBCDIC to ASCII, returns int]
  363. ebcdic2ascii(|string ebcdic_str)
  364. [getallheaders | Fetch all HTTP request headers, returns array]
  365. getallheaders()|
  366. [virtual | Perform an Apache sub-request, returns int]
  367. virtual(|string filename)
  368. ; -----------------------------------------------------------------------------
  369. ; Arrays - Array Functions
  370. ; -----------------------------------------------------------------------------
  371. [array_change_key_case | Returns an array with all string keys lowercased or uppercased, returns array]
  372. array_change_key_case(|array input, [int case])
  373. [array_chunk | Split an array into chunks, returns array]
  374. array_chunk(|array input, int size, [bool preserve_keys])
  375. [array_combine | Creates an array by using one array for keys and another for its values, returns array]
  376. array_combine(|array keys, array values)
  377. [array_count_values | Counts all the values of an array, returns array]
  378. array_count_values(|array input)
  379. [array_diff_assoc | Computes the difference of arrays with additional index check, returns array]
  380. array_diff_assoc(|array array1, array array2, [array ...])
  381. [array_diff_uassoc | Computes the difference of arrays with additional index check which is performed by a user supplied callback function., returns array]
  382. array_diff_assoc(|array array1, array array2, [array ...], callback key_compare_func)
  383. [array_diff | Computes the difference of arrays, returns array]
  384. array_diff(|array array1, array array2, [array ...])
  385. [array_fill | Fill an array with values, returns array]
  386. array_fill(|int start_index, int num, mixed value)
  387. [array_filter | Filters elements of an array using a callback function, returns array]
  388. array_filter(|array input, [callback callback])
  389. [array_flip | Exchanges all keys with their associated values in an array, returns array]
  390. array_flip(|array trans)
  391. [array_intersect_assoc | Computes the intersection of arrays with additional index check, returns array]
  392. array_intersect_assoc(|array array1, array array2, [array ...])
  393. [array_intersect | Computes the intersection of arrays, returns array]
  394. array_intersect(|array array1, array array2, [array ...])
  395. [array_key_exists | Checks if the given key or index exists in the array, returns bool]
  396. array_key_exists(|mixed key, array search)
  397. [array_keys | Return all the keys of an array, returns array]
  398. array_keys(|array input, [mixed search_value])
  399. [array_map | Applies the callback to the elements of the given arrays, returns array]
  400. array_map(|mixed callback, array arr1, [array ...])
  401. [array_merge_recursive | Merge two or more arrays recursively, returns array]
  402. array_merge_recursive(|array array1, array array2, [array ...])
  403. [array_merge | Merge two or more arrays, returns array]
  404. array_merge(|array array1, array array2, [array ...])
  405. [array_multisort | Sort multiple or multi-dimensional arrays, returns bool]
  406. array_multisort(|array ar1, [mixed arg], [mixed ...], [array ...])
  407. [array_pad | Pad array to the specified length with a value, returns array]
  408. array_pad(|array input, int pad_size, mixed pad_value)
  409. [array_pop | Pop the element off the end of array, returns mixed]
  410. array_pop(|array array)
  411. [array_push | Push one or more elements onto the end of array, returns int]
  412. array_push(|array array, mixed var, [mixed ...])
  413. [array_rand | Pick one or more random entries out of an array, returns mixed]
  414. array_rand(|array input, [int num_req])
  415. [array_reduce | Iteratively reduce the array to a single value using a callback function, returns mixed]
  416. array_reduce(|array input, callback function, [int initial])
  417. [array_reverse | Return an array with elements in reverse order, returns array]
  418. array_reverse(|array array, [bool preserve_keys])
  419. [array_search | Searches the array for a given value and returns the corresponding key if successful, returns mixed]
  420. array_search(|mixed needle, array haystack, [bool strict])
  421. [array_shift | Shift an element off the beginning of array, returns mixed]
  422. array_shift(|array array)
  423. [array_slice | Extract a slice of the array, returns array]
  424. array_slice(|array array, int offset, [int length])
  425. [array_splice | Remove a portion of the array and replace it with something else, returns array]
  426. array_splice(|array input, int offset, [int length], [array replacement])
  427. [array_sum | Calculate the sum of values in an array., returns mixed]
  428. array_sum(|array array)
  429. [array_udiff_assoc | Computes the difference of arrays with additional index check. The data is compared by using a callback function., returns array]
  430. array_udiff_assoc(|array array1, array array2, [array ...], callback data_compare_func)
  431. [array_udiff_uassoc | Computes the difference of arrays with additional index check. The data is compared by using a callback function. The index check is done by a callback function also, returns array]
  432. array_udiff_uassoc(|array array1, array array2, [array ...], callback data_compare_func, callback key_compare_func)
  433. [array_udiff | Computes the difference of arrays by using callback function for data comparison., returns array]
  434. array_udiff(|array array1, array array2, [array ...], callback data_compare_func)
  435. [array_unique | Removes duplicate values from an array, returns array]
  436. array_unique(|array array)
  437. [array_unshift | Prepend one or more elements to the beginning of array, returns int]
  438. array_unshift(|array array, mixed var, [mixed ...])
  439. [array_values | Return all the values of an array, returns array]
  440. array_values(|array input)
  441. [array_walk | Apply a user function to every member of an array, returns bool]
  442. array_walk(|array array, callback function, [mixed userdata])
  443. [array | Create an array, returns array]
  444. array(|[mixed ...])
  445. [arsort | Sort an array in reverse order and maintain index association, returns void]
  446. arsort(|array array, [int sort_flags])
  447. [asort | Sort an array and maintain index association, returns void]
  448. asort(|array array, [int sort_flags])
  449. [compact | Create array containing variables and their values, returns array]
  450. compact(|mixed varname, [mixed ...])
  451. [count | Count elements in a variable, returns int]
  452. count(|mixed var, [int mode])
  453. [current | Return the current element in an array, returns mixed]
  454. current(|array array)
  455. [each | Return the current key and value pair from an array and advance the array cursor, returns array]
  456. each(|array array)
  457. [end | Set the internal pointer of an array to its last element, returns mixed]
  458. end(|array array)
  459. [extract | Import variables into the current symbol table from an array, returns int]
  460. extract(|array var_array, [int extract_type], [string prefix])
  461. [in_array | Checks if a value exists in an array, returns bool]
  462. in_array(|mixed needle, array haystack, [bool strict])
  463. [key | Fetch a key from an associative array, returns mixed]
  464. key(|array array)
  465. [krsort | Sort an array by key in reverse order, returns int]
  466. krsort(|array array, [int sort_flags])
  467. [ksort | Sort an array by key, returns int]
  468. ksort(|array array, [int sort_flags])
  469. [list | Assign variables as if they were an array, returns void]
  470. list(|mixed ...)
  471. [natcasesort | Sort an array using a case insensitive "natural order" algorithm, returns void]
  472. natcasesort(|array array)
  473. [natsort | Sort an array using a "natural order" algorithm, returns void]
  474. natsort(|array array)
  475. [next | Advance the internal array pointer of an array, returns mixed]
  476. next(|array array)
  477. [pos | Get the current element from an array, returns mixed]
  478. pos(|array array)
  479. [prev | Rewind the internal array pointer, returns mixed]
  480. prev(|array array)
  481. [range | Create an array containing a range of elements, returns array]
  482. range(|int low, int high, [int step])
  483. [reset | Set the internal pointer of an array to its first element, returns mixed]
  484. reset(|array array)
  485. [rsort | Sort an array in reverse order, returns void]
  486. rsort(|array array, [int sort_flags])
  487. [shuffle | Shuffle an array, returns void]
  488. shuffle(|array array)
  489. [sizeof | Alias of count]
  490. [sort | Sort an array, returns void]
  491. sort(|array array, [int sort_flags])
  492. [uasort | Sort an array with a user-defined comparison function and maintain index association, returns void]
  493. uasort(|array array, callback cmp_function)
  494. [uksort | Sort an array by keys using a user-defined comparison function, returns void]
  495. uksort(|array array, callback cmp_function)
  496. [usort | Sort an array by values using a user-defined comparison function, returns void]
  497. usort(|array array, callback cmp_function)
  498. ; -----------------------------------------------------------------------------
  499. ; Aspell - Aspell functions [deprecated]
  500. ; -----------------------------------------------------------------------------
  501. [aspell_check_raw | Check a word without changing its case or trying to trim it [deprecated], returns bool]
  502. aspell_check_raw(|int dictionary_link, string word)
  503. [aspell_check | Check a word [deprecated], returns bool]
  504. aspell_check(|int dictionary_link, string word)
  505. [aspell_new | Load a new dictionary [deprecated], returns int]
  506. aspell_new(|string master, [string personal])
  507. [aspell_suggest | Suggest spellings of a word [deprecated], returns array]
  508. aspell_suggest(|int dictionary_link, string word)
  509. ; -----------------------------------------------------------------------------
  510. ; BC math - BCMath Arbitrary Precision Mathematics Functions
  511. ; -----------------------------------------------------------------------------
  512. [bcadd | Add two arbitrary precision numbers, returns string]
  513. bcadd(|string left_operand, string right_operand, [int scale])
  514. [bccomp | Compare two arbitrary precision numbers, returns int]
  515. bccomp(|string left_operand, string right_operand, [int scale])
  516. [bcdiv | Divide two arbitrary precision numbers, returns string]
  517. bcdiv(|string left_operand, string right_operand, [int scale])
  518. [bcmod | Get modulus of an arbitrary precision number, returns string]
  519. bcmod(|string left_operand, string modulus)
  520. [bcmul | Multiply two arbitrary precision number, returns string]
  521. bcmul(|string left_operand, string right_operand, [int scale])
  522. [bcpow | Raise an arbitrary precision number to another, returns string]
  523. bcpow(|string x, int y, [int scale])
  524. [bcpowmod | Raise an arbitrary precision number to another, reduced by a specified modulus., returns string]
  525. bcpowmod(|string x, string y, string modulus, [int scale])
  526. [bcscale | Set default scale parameter for all bc math functions, returns string]
  527. bcscale(|int scale)
  528. [bcsqrt | Get the square root of an arbitrary precision number, returns string]
  529. bcsqrt(|string operand, [int scale])
  530. [bcsub | Subtract one arbitrary precision number from another, returns string]
  531. bcsub(|string left_operand, string right_operand, [int scale])
  532. ; -----------------------------------------------------------------------------
  533. ; Bzip2 - Bzip2 Compression Functions
  534. ; -----------------------------------------------------------------------------
  535. [bzclose | Close a bzip2 file pointer, returns int]
  536. bzclose(|resource bz)
  537. [bzcompress | Compress a string into bzip2 encoded data, returns string]
  538. bzcompress(|string source, [int blocksize], [int workfactor])
  539. [bzdecompress | Decompresses bzip2 encoded data, returns string]
  540. bzdecompress(|string source, [int small])
  541. [bzerrno | Returns a bzip2 error number, returns int]
  542. bzerrno(|resource bz)
  543. [bzerror | Returns the bzip2 error number and error string in an array, returns array]
  544. bzerror(|resource bz)
  545. [bzerrstr | Returns a bzip2 error string, returns string]
  546. bzerrstr(|resource bz)
  547. [bzflush | Force a write of all buffered data, returns int]
  548. bzflush(|resource bz)
  549. [bzopen | Open a bzip2 compressed file, returns resource]
  550. bzopen(|string filename, string mode)
  551. [bzread | Binary safe bzip2 file read, returns string]
  552. bzread(|resource bz, [int length])
  553. [bzwrite | Binary safe bzip2 file write, returns int]
  554. bzwrite(|resource bz, string data, [int length])
  555. ; -----------------------------------------------------------------------------
  556. ; Calendar - Calendar functions
  557. ; -----------------------------------------------------------------------------
  558. [cal_days_in_month | Return the number of days in a month for a given year and calendar, returns int]
  559. cal_days_in_month(|int calendar, int month, int year)
  560. [cal_from_jd | Converts from Julian Day Count to a supported calendar, returns array]
  561. cal_from_jd(|int jd, int calendar)
  562. [cal_info | Returns information about a particular calendar, returns array]
  563. cal_info(|[int calendar])
  564. [cal_to_jd | Converts from a supported calendar to Julian Day Count, returns int]
  565. cal_to_jd(|int calendar, int month, int day, int year)
  566. [easter_date | Get UNIX timestamp for midnight on Easter of a given year, returns int]
  567. easter_date(|[int year])
  568. [easter_days | Get number of days after March 21 on which Easter falls for a given year, returns int]
  569. easter_days(|[int year], [int method])
  570. [FrenchToJD | Converts a date from the French Republican Calendar to a Julian Day Count, returns int]
  571. frenchtojd(|int month, int day, int year)
  572. [GregorianToJD | Converts a Gregorian date to Julian Day Count, returns int]
  573. gregoriantojd(|int month, int day, int year)
  574. [JDDayOfWeek | Returns the day of the week, returns mixed]
  575. jddayofweek(|int julianday, int mode)
  576. [JDMonthName | Returns a month name, returns string]
  577. jdmonthname(|int julianday, int mode)
  578. [JDToFrench | Converts a Julian Day Count to the French Republican Calendar, returns string]
  579. jdtofrench(|int juliandaycount)
  580. [JDToGregorian | Converts Julian Day Count to Gregorian date, returns string]
  581. jdtogregorian(|int julianday)
  582. [jdtojewish | Converts a julian day count to a jewish calendar date, returns string]
  583. jdtojewish(|int juliandaycount, [bool hebrew], [int fl])
  584. [JDToJulian | Converts a Julian Day Count to a Julian Calendar Date, returns string]
  585. jdtojulian(|int julianday)
  586. [jdtounix | Convert Julian Day to UNIX timestamp, returns int]
  587. jdtounix(|int jday)
  588. [JewishToJD | Converts a date in the Jewish Calendar to Julian Day Count, returns int]
  589. jewishtojd(|int month, int day, int year)
  590. [JulianToJD | Converts a Julian Calendar date to Julian Day Count, returns int]
  591. juliantojd(|int month, int day, int year)
  592. [unixtojd | Convert UNIX timestamp to Julian Day, returns int]
  593. unixtojd(|[int timestamp])
  594. ; -----------------------------------------------------------------------------
  595. ; CCVS - CCVS API Functions
  596. ; -----------------------------------------------------------------------------
  597. [ccvs_add | Add data to a transaction, returns string]
  598. ccvs_add(|string session, string invoice, string argtype, string argval)
  599. [ccvs_auth | Perform credit authorization test on a transaction, returns string]
  600. ccvs_auth(|string session, string invoice)
  601. [ccvs_command | Performs a command which is peculiar to a single protocol, and thus is not available in the general CCVS API, returns string]
  602. ccvs_command(|string session, string type, string argval)
  603. [ccvs_count | Find out how many transactions of a given type are stored in the system, returns int]
  604. ccvs_count(|string session, string type)
  605. [ccvs_delete | Delete a transaction, returns string]
  606. ccvs_delete(|string session, string invoice)
  607. [ccvs_done | Terminate CCVS engine and do cleanup work, returns string]
  608. ccvs_done(|string sess)
  609. [ccvs_init | Initialize CCVS for use, returns string]
  610. ccvs_init(|string name)
  611. [ccvs_lookup | Look up an item of a particular type in the database #, returns string]
  612. ccvs_lookup(|string session, string invoice, int inum)
  613. [ccvs_new | Create a new, blank transaction, returns string]
  614. ccvs_new(|string session, string invoice)
  615. [ccvs_report | Return the status of the background communication process, returns string]
  616. ccvs_report(|string session, string type)
  617. [ccvs_return | Transfer funds from the merchant to the credit card holder, returns string]
  618. ccvs_return(|string session, string invoice)
  619. [ccvs_reverse | Perform a full reversal on an already-processed authorization, returns string]
  620. ccvs_reverse(|string session, string invoice)
  621. [ccvs_sale | Transfer funds from the credit card holder to the merchant, returns string]
  622. ccvs_sale(|string session, string invoice)
  623. [ccvs_status | Check the status of an invoice, returns string]
  624. ccvs_status(|string session, string invoice)
  625. [ccvs_textvalue | Get text return value for previous function call, returns string]
  626. ccvs_textvalue(|string session)
  627. [ccvs_void | Perform a full reversal on a completed transaction, returns string]
  628. ccvs_void(|string session, string invoice)
  629. ; -----------------------------------------------------------------------------
  630. ; COM - COM support functions for Windows
  631. ; -----------------------------------------------------------------------------
  632. [COM | COM class, returns string]
  633. COM::COM(|string module_name, [string server_name], [int codepage])
  634. [VARIANT | VARIANT class, returns string]
  635. VARIANT::VARIANT(|[mixed value], [int type], [int codepage])
  636. [com_addref | Increases the components reference counter., returns void]
  637. com_addref()|
  638. [com_get | Gets the value of a COM Component's property, returns mixed]
  639. com_get(|resource com_object, string property)
  640. [com_invoke | Calls a COM component's method., returns mixed]
  641. com_invoke(|resource com_object, string function_name, [mixed function parameters, ...])
  642. [com_isenum | Grabs an IEnumVariant, returns void]
  643. com_isenum(|object com_module)
  644. [com_load_typelib | Loads a Typelib, returns void]
  645. com_load_typelib(|string typelib_name, [int case_insensitive])
  646. [com_load | Creates a new reference to a COM component, returns string]
  647. com_load(|string module_name, [string server_name], [int codepage])
  648. [com_propget | Alias of com_get]
  649. [com_propput | Alias of com_set]
  650. [com_propset | Alias of com_set]
  651. [com_release | Decreases the components reference counter., returns void]
  652. com_release()|
  653. [com_set | Assigns a value to a COM component's property, returns void]
  654. com_set(|resource com_object, string property, mixed value)
  655. ; -----------------------------------------------------------------------------
  656. ; Classes/Objects - Class/Object Functions
  657. ; -----------------------------------------------------------------------------
  658. [call_user_method_array | Call a user method given with an array of parameters [deprecated], returns mixed]
  659. call_user_method_array(|string method_name, object obj, [array paramarr])
  660. [call_user_method | Call a user method on an specific object [deprecated], returns mixed]
  661. call_user_method(|string method_name, object obj, [mixed parameter], [mixed ...])
  662. [class_exists | Checks if the class has been defined, returns bool]
  663. class_exists(|string class_name)
  664. [get_class_methods | Returns an array of class methods' names, returns array]
  665. get_class_methods(|mixed class_name)
  666. [get_class_vars | Returns an array of default properties of the class, returns array]
  667. get_class_vars(|string class_name)
  668. [get_class | Returns the name of the class of an object, returns string]
  669. get_class(|object obj)
  670. [get_declared_classes | Returns an array with the name of the defined classes, returns array]
  671. get_declared_classes()|
  672. [get_object_vars | Returns an associative array of object properties, returns array]
  673. get_object_vars(|object obj)
  674. [get_parent_class | Retrieves the parent class name for object or class, returns string]
  675. get_parent_class(|mixed obj)
  676. [is_a | Returns TRUE if the object is of this class or has this class as one of its parents, returns bool]
  677. is_a(|object object, string class_name)
  678. [is_subclass_of | Returns TRUE if the object has this class as one of its parents, returns bool]
  679. is_subclass_of(|object object, string class_name)
  680. [method_exists | Checks if the class method exists, returns bool]
  681. method_exists(|object object, string method_name)
  682. ; -----------------------------------------------------------------------------
  683. ; ClibPDF - ClibPDF functions
  684. ; -----------------------------------------------------------------------------
  685. [cpdf_add_annotation | Adds annotation, returns bool]
  686. cpdf_add_annotation(|int pdf_document, float llx, float lly, float urx, float ury, string title, string content, [int mode])
  687. [cpdf_add_outline | Adds bookmark for current page, returns int]
  688. cpdf_add_outline(|int pdf_document, int lastoutline, int sublevel, int open, int pagenr, string text)
  689. [cpdf_arc | Draws an arc, returns bool]
  690. cpdf_arc(|int pdf_document, float x-coor, float y-coor, float radius, float start, float end, [int mode])
  691. [cpdf_begin_text | Starts text section, returns bool]
  692. cpdf_begin_text(|int pdf_document)
  693. [cpdf_circle | Draw a circle, returns bool]
  694. cpdf_circle(|int pdf_document, float x-coor, float y-coor, float radius, [int mode])
  695. [cpdf_clip | Clips to current path, returns bool]
  696. cpdf_clip(|int pdf_document)
  697. [cpdf_close | Closes the pdf document, returns bool]
  698. cpdf_close(|int pdf_document)
  699. [cpdf_closepath_fill_stroke | Close, fill and stroke current path, returns bool]
  700. cpdf_closepath_fill_stroke(|int pdf_document)
  701. [cpdf_closepath_stroke | Close path and draw line along path, returns bool]
  702. cpdf_closepath_stroke(|int pdf_document)
  703. [cpdf_closepath | Close path, returns bool]
  704. cpdf_closepath(|int pdf_document)
  705. [cpdf_continue_text | Output text in next line, returns bool]
  706. cpdf_continue_text(|int pdf_document, string text)
  707. [cpdf_curveto | Draws a curve, returns bool]
  708. cpdf_curveto(|int pdf_document, float x1, float y1, float x2, float y2, float x3, float y3, [int mode])
  709. [cpdf_end_text | Ends text section, returns bool]
  710. cpdf_end_text(|int pdf_document)
  711. [cpdf_fill_stroke | Fill and stroke current path, returns bool]
  712. cpdf_fill_stroke(|int pdf_document)
  713. [cpdf_fill | Fill current path, returns bool]
  714. cpdf_fill(|int pdf_document)
  715. [cpdf_finalize_page | Ends page, returns bool]
  716. cpdf_finalize_page(|int pdf_document, int page_number)
  717. [cpdf_finalize | Ends document, returns bool]
  718. cpdf_finalize(|int pdf_document)
  719. [cpdf_global_set_document_limits | Sets document limits for any pdf document, returns bool]
  720. cpdf_global_set_document_limits(|int maxpages, int maxfonts, int maximages, int maxannotations, int maxobjects)
  721. [cpdf_import_jpeg | Opens a JPEG image, returns int]
  722. cpdf_import_jpeg(|int pdf_document, string file_name, float x-coor, float y-coor, float angle, float width, float height, float x-scale, float y-scale, int gsave, [int mode])
  723. [cpdf_lineto | Draws a line, returns bool]
  724. cpdf_lineto(|int pdf_document, float x-coor, float y-coor, [int mode])
  725. [cpdf_moveto | Sets current point, returns bool]
  726. cpdf_moveto(|int pdf_document, float x-coor, float y-coor, [int mode])
  727. [cpdf_newpath | Starts a new path, returns bool]
  728. cpdf_newpath(|int pdf_document)
  729. [cpdf_open | Opens a new pdf document, returns int]
  730. cpdf_open(|int compression, [string filename])
  731. [cpdf_output_buffer | Outputs the pdf document in memory buffer, returns bool]
  732. cpdf_output_buffer(|int pdf_document)
  733. [cpdf_page_init | Starts new page, returns bool]
  734. cpdf_page_init(|int pdf_document, int page_number, int orientation, float height, float width, [float unit])
  735. [cpdf_place_inline_image | Places an image on the page, returns bool]
  736. cpdf_place_inline_image(|int pdf_document, int image, float x-coor, float y-coor, float angle, float width, float height, [int mode])
  737. [cpdf_rect | Draw a rectangle, returns bool]
  738. cpdf_rect(|int pdf_document, float x-coor, float y-coor, float width, float height, [int mode])
  739. [cpdf_restore | Restores formerly saved environment, returns bool]
  740. cpdf_restore(|int pdf_document)
  741. [cpdf_rlineto | Draws a line, returns bool]
  742. cpdf_rlineto(|int pdf_document, float x-coor, float y-coor, [int mode])
  743. [cpdf_rmoveto | Sets current point, returns bool]
  744. cpdf_rmoveto(|int pdf_document, float x-coor, float y-coor, [int mode])
  745. [cpdf_rotate_text | Sets text rotation angle, returns bool]
  746. cpdf_rotate_text(|int pdfdoc, float angle)
  747. [cpdf_rotate | Sets rotation, returns bool]
  748. cpdf_rotate(|int pdf_document, float angle)
  749. [cpdf_save_to_file | Writes the pdf document into a file, returns bool]
  750. cpdf_save_to_file(|int pdf_document, string filename)
  751. [cpdf_save | Saves current environment, returns bool]
  752. cpdf_save(|int pdf_document)
  753. [cpdf_scale | Sets scaling, returns bool]
  754. cpdf_scale(|int pdf_document, float x-scale, float y-scale)
  755. [cpdf_set_action_url | Sets hyperlink, returns bool]
  756. cpdf_set_action_url(|int pdfdoc, float xll, float yll, float xur, float xur, string url, [int mode])
  757. [cpdf_set_char_spacing | Sets character spacing, returns bool]
  758. cpdf_set_char_spacing(|int pdf_document, float space)
  759. [cpdf_set_creator | Sets the creator field in the pdf document, returns bool]
  760. cpdf_set_creator(|string creator)
  761. [cpdf_set_current_page | Sets current page, returns bool]
  762. cpdf_set_current_page(|int pdf_document, int page_number)
  763. [cpdf_set_font_directories | Sets directories to search when using external fonts, returns bool]
  764. cpdf_set_font_directories(|int pdfdoc, string pfmdir, string pfbdir)
  765. [cpdf_set_font_map_file | Sets fontname to filename translation map when using external fonts, returns bool]
  766. cpdf_set_font_map_file(|int pdfdoc, string filename)
  767. [cpdf_set_font | Select the current font face and size, returns bool]
  768. cpdf_set_font(|int pdf_document, string font_name, float size, string encoding)
  769. [cpdf_set_horiz_scaling | Sets horizontal scaling of text, returns bool]
  770. cpdf_set_horiz_scaling(|int pdf_document, float scale)
  771. [cpdf_set_keywords | Sets the keywords field of the pdf document, returns bool]
  772. cpdf_set_keywords(|string keywords)
  773. [cpdf_set_leading | Sets distance between text lines, returns bool]
  774. cpdf_set_leading(|int pdf_document, float distance)
  775. [cpdf_set_page_animation | Sets duration between pages, returns bool]
  776. cpdf_set_page_animation(|int pdf_document, int transition, float duration)
  777. [cpdf_set_subject | Sets the subject field of the pdf document, returns bool]
  778. cpdf_set_subject(|int pdf_document, string subject)
  779. [cpdf_set_text_matrix | Sets the text matrix, returns bool]
  780. cpdf_set_text_matrix(|int pdf_document, array matrix)
  781. [cpdf_set_text_pos | Sets text position, returns bool]
  782. cpdf_set_text_pos(|int pdf_document, float x-coor, float y-coor, [int mode])
  783. [cpdf_set_text_rendering | Determines how text is rendered, returns bool]
  784. cpdf_set_text_rendering(|int pdf_document, int rendermode)
  785. [cpdf_set_text_rise | Sets the text rise, returns bool]
  786. cpdf_set_text_rise(|int pdf_document, float value)
  787. [cpdf_set_title | Sets the title field of the pdf document, returns bool]
  788. cpdf_set_title(|string title)
  789. [cpdf_set_viewer_preferences | How to show the document in the viewer, returns bool]
  790. cpdf_set_viewer_preferences(|int pdfdoc, array preferences)
  791. [cpdf_set_word_spacing | Sets spacing between words, returns bool]
  792. cpdf_set_word_spacing(|int pdf_document, float space)
  793. [cpdf_setdash | Sets dash pattern, returns bool]
  794. cpdf_setdash(|int pdf_document, float white, float black)
  795. [cpdf_setflat | Sets flatness, returns bool]
  796. cpdf_setflat(|int pdf_document, float value)
  797. [cpdf_setgray_fill | Sets filling color to gray value, returns bool]
  798. cpdf_setgray_fill(|int pdf_document, float value)
  799. [cpdf_setgray_stroke | Sets drawing color to gray value, returns bool]
  800. cpdf_setgray_stroke(|int pdf_document, float gray_value)
  801. [cpdf_setgray | Sets drawing and filling color to gray value, returns bool]
  802. cpdf_setgray(|int pdf_document, float gray_value)
  803. [cpdf_setlinecap | Sets linecap parameter, returns bool]
  804. cpdf_setlinecap(|int pdf_document, int value)
  805. [cpdf_setlinejoin | Sets linejoin parameter, returns bool]
  806. cpdf_setlinejoin(|int pdf_document, int value)
  807. [cpdf_setlinewidth | Sets line width, returns bool]
  808. cpdf_setlinewidth(|int pdf_document, float width)
  809. [cpdf_setmiterlimit | Sets miter limit, returns bool]
  810. cpdf_setmiterlimit(|int pdf_document, float value)
  811. [cpdf_setrgbcolor_fill | Sets filling color to rgb color value, returns bool]
  812. cpdf_setrgbcolor_fill(|int pdf_document, float red_value, float green_value, float blue_value)
  813. [cpdf_setrgbcolor_stroke | Sets drawing color to rgb color value, returns bool]
  814. cpdf_setrgbcolor_stroke(|int pdf_document, float red_value, float green_value, float blue_value)
  815. [cpdf_setrgbcolor | Sets drawing and filling color to rgb color value, returns bool]
  816. cpdf_setrgbcolor(|int pdf_document, float red_value, float green_value, float blue_value)
  817. [cpdf_show_xy | Output text at position, returns bool]
  818. cpdf_show_xy(|int pdf_document, string text, float x-coor, float y-coor, [int mode])
  819. [cpdf_show | Output text at current position, returns bool]
  820. cpdf_show(|int pdf_document, string text)
  821. [cpdf_stringwidth | Returns width of text in current font, returns float]
  822. cpdf_stringwidth(|int pdf_document, string text)
  823. [cpdf_stroke | Draw line along path, returns bool]
  824. cpdf_stroke(|int pdf_document)
  825. [cpdf_text | Output text with parameters, returns bool]
  826. cpdf_text(|int pdf_document, string text, float x-coor, float y-coor, [int mode], [float orientation], [int alignmode])
  827. [cpdf_translate | Sets origin of coordinate system, returns bool]
  828. cpdf_translate(|int pdf_document, float x-coor, float y-coor, [int mode])
  829. ; -----------------------------------------------------------------------------
  830. ; Crack - Crack functions
  831. ; -----------------------------------------------------------------------------
  832. [crack_check | Performs an obscure check with the given password, returns bool]
  833. crack_check(|[resource dictionary], string password)
  834. [crack_closedict | Closes an open CrackLib dictionary, returns bool]
  835. crack_closedict(|[resource dictionary])
  836. [crack_getlastmessage | Returns the message from the last obscure check, returns string]
  837. crack_getlastmessage()|
  838. [crack_opendict | Opens a new CrackLib dictionary, returns resource]
  839. crack_opendict(|string dictionary)
  840. ; -----------------------------------------------------------------------------
  841. ; CURL - CURL, Client URL Library Functions
  842. ; -----------------------------------------------------------------------------
  843. [curl_close | Close a CURL session, returns void]
  844. curl_close(|resource ch)
  845. [curl_errno | Return the last error number, returns int]
  846. curl_errno(|resource ch)
  847. [curl_error | Return a string containing the last error for the current session, returns string]
  848. curl_error(|resource ch)
  849. [curl_exec | Perform a CURL session, returns mixed]
  850. curl_exec(|resource ch)
  851. [curl_getinfo | Get information regarding a specific transfer, returns string]
  852. curl_getinfo(|resource ch, [int opt])
  853. [curl_init | Initialize a CURL session, returns resource]
  854. curl_init(|[string url])
  855. [curl_multi_add_handle | Add a normal cURL handle to a cURL multi handle, returns int]
  856. curl_multi_add_handle(|resource mh, resource ch)
  857. [curl_multi_close | Close a set of cURL handles, returns void]
  858. curl_multi_close(|resource mh)
  859. [curl_multi_exec | Run the sub-connections of the current cURL handle, returns int]
  860. curl_multi_exec(|resource mh)
  861. [curl_multi_getcontent | Return the content of a cURL handle if CURLOPT_RETURNTRANSFER is set, returns string]
  862. curl_multi_getcontent(|resource ch)
  863. [curl_multi_info_read | Get information about the current transfers, returns array]
  864. curl_multi_info_read(|resource mh)
  865. [curl_multi_init | Returns a new cURL multi handle, returns resource]
  866. curl_multi_init()|
  867. [curl_multi_remove_handle | Remove a multi handle from a set of cURL handles, returns int]
  868. curl_multi_remove_handle(|resource mh, resource ch)
  869. [curl_multi_select | Get all the sockets associated with the cURL extension, which can then be "selected", returns int]
  870. curl_multi_select(|resource mh, [float timeout])
  871. [curl_setopt | Set an option for a CURL transfer, returns bool]
  872. curl_setopt(|resource ch, string option, mixed value)
  873. [curl_version | Return the current CURL version, returns string]
  874. curl_version()|
  875. ; -----------------------------------------------------------------------------
  876. ; Cybercash - Cybercash payment functions
  877. ; -----------------------------------------------------------------------------
  878. [cybercash_base64_decode | base64 decode data for Cybercash, returns string]
  879. cybercash_base64_decode(|string inbuff)
  880. [cybercash_base64_encode | base64 encode data for Cybercash, returns string]
  881. cybercash_base64_encode(|string inbuff)
  882. [cybercash_decr | Cybercash decrypt, returns array]
  883. cybercash_decr(|string wmk, string sk, string inbuff)
  884. [cybercash_encr | Cybercash encrypt, returns array]
  885. cybercash_encr(|string wmk, string sk, string inbuff)
  886. ; -----------------------------------------------------------------------------
  887. ; Cyrus IMAP - Cyrus IMAP administration functions
  888. ; -----------------------------------------------------------------------------
  889. [cyrus_authenticate | Authenticate against a Cyrus IMAP server, returns bool]
  890. cyrus_authenticate(|resource connection, [string mechlist], [string service], [string user], [int minssf], [int maxssf])
  891. [cyrus_bind | Bind callbacks to a Cyrus IMAP connection, returns bool]
  892. cyrus_bind(|resource connection, array callbacks)
  893. [cyrus_close | Close connection to a Cyrus IMAP server, returns bool]
  894. cyrus_close(|resource connection)
  895. [cyrus_connect | Connect to a Cyrus IMAP server, returns resource]
  896. cyrus_connect(|[string host], [string port], [int flags])
  897. [cyrus_query | Send a query to a Cyrus IMAP server, returns bool]
  898. cyrus_query(|resource connection, string query)
  899. [cyrus_unbind | Unbind ..., returns bool]
  900. cyrus_unbind(|resource connection, string trigger_name)
  901. ; -----------------------------------------------------------------------------
  902. ; ctype - Character type functions
  903. ; -----------------------------------------------------------------------------
  904. [ctype_alnum | Check for alphanumeric character(s), returns bool]
  905. ctype_alnum(|string text)
  906. [ctype_alpha | Check for alphabetic character(s), returns bool]
  907. ctype_alpha(|string text)
  908. [ctype_cntrl | Check for control character(s), returns bool]
  909. ctype_cntrl(|string text)
  910. [ctype_digit | Check for numeric character(s), returns bool]
  911. ctype_digit(|string text)
  912. [ctype_graph | Check for any printable character(s) except space, returns bool]
  913. ctype_graph(|string text)
  914. [ctype_lower | Check for lowercase character(s), returns bool]
  915. ctype_lower(|string text)
  916. [ctype_print | Check for printable character(s), returns bool]
  917. ctype_print(|string text)
  918. [ctype_punct | Check for any printable character which is not whitespace or an alphanumeric character, returns bool]
  919. ctype_punct(|string text)
  920. [ctype_space | Check for whitespace character(s), returns bool]
  921. ctype_space(|string text)
  922. [ctype_upper | Check for uppercase character(s), returns bool]
  923. ctype_upper(|string text)
  924. [ctype_xdigit | Check for character(s) representing a hexadecimal digit, returns bool]
  925. ctype_xdigit(|string text)
  926. ; -----------------------------------------------------------------------------
  927. ; dba - Database (dbm-style) abstraction layer functions
  928. ; -----------------------------------------------------------------------------
  929. [dba_close | Close database, returns void]
  930. dba_close(|resource handle)
  931. [dba_delete | Delete entry specified by key, returns bool]
  932. dba_delete(|string key, resource handle)
  933. [dba_exists | Check whether key exists, returns bool]
  934. dba_exists(|string key, resource handle)
  935. [dba_fetch | Fetch data specified by key, returns string]
  936. dba_fetch(|string key, resource handle)
  937. [dba_firstkey | Fetch first key, returns string]
  938. dba_firstkey(|resource handle)
  939. [dba_handlers | List handlers available, returns array]
  940. dba_handlers()|
  941. [dba_insert | Insert entry, returns bool]
  942. dba_insert(|string key, string value, resource handle)
  943. [dba_key_split | Splits a key in string representation into array representation, returns mixed]
  944. dba_key_split(|mixed key)
  945. [dba_list | List all open database files, returns array]
  946. dba_list()|
  947. [dba_nextkey | Fetch next key, returns string]
  948. dba_nextkey(|resource handle)
  949. [dba_open | Open database, returns resource]
  950. dba_open(|string path, string mode, string handler, [ ...])
  951. [dba_optimize | Optimize database, returns bool]
  952. dba_optimize(|resource handle)
  953. [dba_popen | Open database persistently, returns resource]
  954. dba_popen(|string path, string mode, string handler, [ ...])
  955. [dba_replace | Replace or insert entry, returns bool]
  956. dba_replace(|string key, string value, resource handle)
  957. [dba_sync | Synchronize database, returns bool]
  958. dba_sync(|resource handle)
  959. ; -----------------------------------------------------------------------------
  960. ; Date/Time - Date and Time functions
  961. ; -----------------------------------------------------------------------------
  962. [checkdate | Validate a gregorian date, returns bool]
  963. checkdate(|int month, int day, int year)
  964. [date | Format a local time/date, returns string]
  965. date(|string format, [int timestamp])
  966. [getdate | Get date/time information, returns array]
  967. getdate(|[int timestamp])
  968. [gettimeofday | Get current time, returns array]
  969. gettimeofday()|
  970. [gmdate | Format a GMT/UTC date/time, returns string]
  971. gmdate(|string format, [int timestamp])
  972. [gmmktime | Get UNIX timestamp for a GMT date, returns int]
  973. gmmktime(|[int hour], [int minute], [int second], [int month], [int day], [int year], [int is_dst])
  974. [gmstrftime | Format a GMT/UTC time/date according to locale settings, returns string]
  975. gmstrftime(|string format, [int timestamp])
  976. [localtime | Get the local time, returns array]
  977. localtime(|[int timestamp], [bool is_associative])
  978. [microtime | Return current UNIX timestamp with microseconds, returns string]
  979. microtime()|
  980. [mktime | Get UNIX timestamp for a date, returns int]
  981. mktime(|[int hour], [int minute], [int second], [int month], [int day], [int year], [int is_dst])
  982. [strftime | Format a local time/date according to locale settings, returns string]
  983. strftime(|string format, [int timestamp])
  984. [strtotime | Parse about any English textual datetime description into a UNIX timestamp, returns int]
  985. strtotime(|string time, [int now])
  986. [time | Return current UNIX timestamp, returns int]
  987. time()|
  988. ; -----------------------------------------------------------------------------
  989. ; dBase - dBase functions
  990. ; -----------------------------------------------------------------------------
  991. [dbase_add_record | Add a record to a dBase database, returns bool]
  992. dbase_add_record(|int dbase_identifier, array record)
  993. [dbase_close | Close a dBase database, returns bool]
  994. dbase_close(|int dbase_identifier)
  995. [dbase_create | Creates a dBase database, returns int]
  996. dbase_create(|string filename, array fields)
  997. [dbase_delete_record | Deletes a record from a dBase database, returns bool]
  998. dbase_delete_record(|int dbase_identifier, int record)
  999. [dbase_get_header_info | Get the header info of a dBase database, returns array]
  1000. dbase_get_header_info(|int dbase_identifier)
  1001. [dbase_get_record_with_names | Gets a record from a dBase database as an associative array, returns array]
  1002. dbase_get_record_with_names(|int dbase_identifier, int record)
  1003. [dbase_get_record | Gets a record from a dBase database, returns array]
  1004. dbase_get_record(|int dbase_identifier, int record)
  1005. [dbase_numfields | Find out how many fields are in a dBase database, returns int]
  1006. dbase_numfields(|int dbase_identifier)
  1007. [dbase_numrecords | Find out how many records are in a dBase database, returns int]
  1008. dbase_numrecords(|int dbase_identifier)
  1009. [dbase_open | Opens a dBase database, returns int]
  1010. dbase_open(|string filename, int flags)
  1011. [dbase_pack | Packs a dBase database, returns bool]
  1012. dbase_pack(|int dbase_identifier)
  1013. [dbase_replace_record | Replace a record in a dBase database, returns bool]
  1014. dbase_replace_record(|int dbase_identifier, array record, int dbase_record_number)
  1015. ; -----------------------------------------------------------------------------
  1016. ; DBM - DBM Functions [deprecated]
  1017. ; -----------------------------------------------------------------------------
  1018. [dblist | Describes the DBM-compatible library being used, returns string]
  1019. dblist()|
  1020. [dbmclose | Closes a dbm database, returns bool]
  1021. dbmclose(|resource dbm_identifier)
  1022. [dbmdelete | Deletes the value for a key from a DBM database, returns bool]
  1023. dbmdelete(|resource dbm_identifier, string key)
  1024. [dbmexists | Tells if a value exists for a key in a DBM database, returns bool]
  1025. dbmexists(|resource dbm_identifier, string key)
  1026. [dbmfetch | Fetches a value for a key from a DBM database, returns string]
  1027. dbmfetch(|resource dbm_identifier, string key)
  1028. [dbmfirstkey | Retrieves the first key from a DBM database, returns string]
  1029. dbmfirstkey(|resource dbm_identifier)
  1030. [dbminsert | Inserts a value for a key in a DBM database, returns int]
  1031. dbminsert(|resource dbm_identifier, string key, string value)
  1032. [dbmnextkey | Retrieves the next key from a DBM database, returns string]
  1033. dbmnextkey(|resource dbm_identifier, string key)
  1034. [dbmopen | Opens a DBM database, returns resource]
  1035. dbmopen(|string filename, string flags)
  1036. [dbmreplace | Replaces the value for a key in a DBM database, returns int]
  1037. dbmreplace(|resource dbm_identifier, string key, string value)
  1038. ; -----------------------------------------------------------------------------
  1039. ; dbx - dbx functions
  1040. ; -----------------------------------------------------------------------------
  1041. [dbx_close | Close an open connection/database, returns bool]
  1042. dbx_close(|object link_identifier)
  1043. [dbx_compare | Compare two rows for sorting purposes, returns int]
  1044. dbx_compare(|array row_a, array row_b, string column_key, [int flags])
  1045. [dbx_connect | Open a connection/database, returns object]
  1046. dbx_connect(|mixed module, string host, string database, string username, string password, [int persistent])
  1047. [dbx_error | Report the error message of the latest function call in the module (not just in the connection), returns string]
  1048. dbx_error(|object link_identifier)
  1049. [dbx_escape_string | Escape a string so it can safely be used in an sql-statement., returns string]
  1050. dbx_escape_string(|object link_identifier, string text)
  1051. [dbx_fetch_row | Fetches rows from a query-result that had the DBX_RESULT_UNBUFFERED flag set, returns object]
  1052. dbx_fetch_row(|object result_identifier)
  1053. [dbx_query | Send a query and fetch all results (if any), returns object]
  1054. dbx_query(|object link_identifier, string sql_statement, [int flags])
  1055. [dbx_sort | Sort a result from a dbx_query by a custom sort function, returns bool]
  1056. dbx_sort(|object result, string user_compare_function)
  1057. ; -----------------------------------------------------------------------------
  1058. ; DB++ - DB++ Functions
  1059. ; -----------------------------------------------------------------------------
  1060. [dbplus_add | Add a tuple to a relation, returns int]
  1061. dbplus_add(|resource relation, array tuple)
  1062. [dbplus_aql | Perform AQL query, returns resource]
  1063. dbplus_aql(|string query, [string server], [string dbpath])
  1064. [dbplus_chdir | Get/Set database virtual current directory, returns string]
  1065. dbplus_chdir(|[string newdir])
  1066. [dbplus_close | Close a relation, returns int]
  1067. dbplus_close(|resource relation)
  1068. [dbplus_curr | Get current tuple from relation, returns int]
  1069. dbplus_curr(|resource relation, array tuple)
  1070. [dbplus_errcode | Get error string for given errorcode or last error, returns string]
  1071. dbplus_errcode(|int errno)
  1072. [dbplus_errno | Get error code for last operation, returns int]
  1073. dbplus_errno()|
  1074. [dbplus_find | Set a constraint on a relation, returns int]
  1075. dbplus_find(|resource relation, array constraints, mixed tuple)
  1076. [dbplus_first | Get first tuple from relation, returns int]
  1077. dbplus_first(|resource relation, array tuple)
  1078. [dbplus_flush | Flush all changes made on a relation, returns int]
  1079. dbplus_flush(|resource relation)
  1080. [dbplus_freealllocks | Free all locks held by this client, returns int]
  1081. dbplus_freealllocks()|
  1082. [dbplus_freelock | Release write lock on tuple, returns int]
  1083. dbplus_freelock(|resource relation, string tname)
  1084. [dbplus_freerlocks | Free all tuple locks on given relation, returns int]
  1085. dbplus_freerlocks(|resource relation)
  1086. [dbplus_getlock | Get a write lock on a tuple, returns int]
  1087. dbplus_getlock(|resource relation, string tname)
  1088. [dbplus_getunique | Get an id number unique to a relation, returns int]
  1089. dbplus_getunique(|resource relation, int uniqueid)
  1090. [dbplus_info | ???, returns int]
  1091. dbplus_info(|resource relation, string key, array )
  1092. [dbplus_last | Get last tuple from relation, returns int]
  1093. dbplus_last(|resource relation, array tuple)
  1094. [dbplus_lockrel | Request write lock on relation, returns int]
  1095. dbplus_lockrel(|resource relation)
  1096. [dbplus_next | Get next tuple from relation, returns int]
  1097. dbplus_next(|resource relation, array )
  1098. [dbplus_open | Open relation file, returns resource]
  1099. dbplus_open(|string name)
  1100. [dbplus_prev | Get previous tuple from relation, returns int]
  1101. dbplus_prev(|resource relation, array tuple)
  1102. [dbplus_rchperm | Change relation permissions, returns int]
  1103. dbplus_rchperm(|resource relation, int mask, string user, string group)
  1104. [dbplus_rcreate | Creates a new DB++ relation, returns resource]
  1105. dbplus_rcreate(|string name, mixed domlist, [bool overwrite])
  1106. [dbplus_rcrtexact | Creates an exact but empty copy of a relation including indices, returns resource]
  1107. dbplus_rcrtexact(|string name, resource relation, bool overwrite)
  1108. [dbplus_rcrtlike | Creates an empty copy of a relation with default indices, returns resource]
  1109. dbplus_rcrtlike(|string name, resource relation, int flag)
  1110. [dbplus_resolve | Resolve host information for relation, returns int]
  1111. dbplus_resolve(|string relation_name)
  1112. [dbplus_restorepos | ???, returns int]
  1113. dbplus_restorepos(|resource relation, array tuple)
  1114. [dbplus_rkeys | Specify new primary key for a relation, returns resource]
  1115. dbplus_rkeys(|resource relation, mixed domlist)
  1116. [dbplus_ropen | Open relation file local, returns resource]
  1117. dbplus_ropen(|string name)
  1118. [dbplus_rquery | Perform local (raw) AQL query, returns int]
  1119. dbplus_rquery(|string query, string dbpath)
  1120. [dbplus_rrename | Rename a relation, returns int]
  1121. dbplus_rrename(|resource relation, string name)
  1122. [dbplus_rsecindex | Create a new secondary index for a relation, returns resource]
  1123. dbplus_rsecindex(|resource relation, mixed domlist, int type)
  1124. [dbplus_runlink | Remove relation from filesystem, returns int]
  1125. dbplus_runlink(|resource relation)
  1126. [dbplus_rzap | Remove all tuples from relation, returns int]
  1127. dbplus_rzap(|resource relation)
  1128. [dbplus_savepos | ???, returns int]
  1129. dbplus_savepos(|resource relation)
  1130. [dbplus_setindex | ???, returns int]
  1131. dbplus_setindex(|resource relation, string idx_name)
  1132. [dbplus_setindexbynumber | ???, returns int]
  1133. dbplus_setindexbynumber(|resource relation, int idx_number)
  1134. [dbplus_sql | Perform SQL query, returns resource]
  1135. dbplus_sql(|string query, string server, string dbpath)
  1136. [dbplus_tcl | Execute TCL code on server side, returns int]
  1137. dbplus_tcl(|int sid, string script)
  1138. [dbplus_tremove | Remove tuple and return new current tuple, returns int]
  1139. dbplus_tremove(|resource relation, array tuple, [array current])
  1140. [dbplus_undo | ???, returns int]
  1141. dbplus_undo(|resource relation)
  1142. [dbplus_undoprepare | ???, returns int]
  1143. dbplus_undoprepare(|resource relation)
  1144. [dbplus_unlockrel | Give up write lock on relation, returns int]
  1145. dbplus_unlockrel(|resource relation)
  1146. [dbplus_unselect | Remove a constraint from relation, returns int]
  1147. dbplus_unselect(|resource relation)
  1148. [dbplus_update | Update specified tuple in relation, returns int]
  1149. dbplus_update(|resource relation, array old, array new)
  1150. [dbplus_xlockrel | Request exclusive lock on relation, returns int]
  1151. dbplus_xlockrel(|resource relation)
  1152. [dbplus_xunlockrel | Free exclusive lock on relation, returns int]
  1153. dbplus_xunlockrel(|resource relation)
  1154. ; -----------------------------------------------------------------------------
  1155. ; Direct IO - Direct IO functions
  1156. ; -----------------------------------------------------------------------------
  1157. [dio_close | Closes the file descriptor given by fd, returns void]
  1158. dio_close(|resource fd)
  1159. [dio_fcntl | Performs a c library fcntl on fd, returns mixed]
  1160. dio_fcntl(|resource fd, int cmd, [mixed arg])
  1161. [dio_open | Opens a new filename with specified permissions of flags and creation permissions of mode, returns resource]
  1162. dio_open(|string filename, int flags, [int mode])
  1163. [dio_read | Reads n bytes from fd and returns them, if n is not specified, reads 1k block, returns string]
  1164. dio_read(|resource fd, [int n])
  1165. [dio_seek | Seeks to pos on fd from whence, returns int]
  1166. dio_seek(|resource fd, int pos, int whence)
  1167. [dio_stat | Gets stat information about the file descriptor fd, returns array]
  1168. dio_stat(|resource fd)
  1169. [dio_tcsetattr | Sets terminal attributes and baud rate for a serial port, returns ]
  1170. dio_tcsetattr(|resource fd, array options)
  1171. [dio_truncate | Truncates file descriptor fd to offset bytes, returns bool]
  1172. dio_truncate(|resource fd, int offset)
  1173. [dio_write | Writes data to fd with optional truncation at length, returns int]
  1174. dio_write(|resource fd, string data, [int len])
  1175. ; -----------------------------------------------------------------------------
  1176. ; Directories - Directory functions
  1177. ; -----------------------------------------------------------------------------
  1178. [chdir | Change directory, returns bool]
  1179. chdir(|string directory)
  1180. [chroot | Change the root directory, returns bool]
  1181. chroot(|string directory)
  1182. [dir | directory class]
  1183. [closedir | close directory handle, returns void]
  1184. closedir(|resource dir_handle)
  1185. [getcwd | gets the current working directory, returns string]
  1186. getcwd()|
  1187. [opendir | open directory handle, returns resource]
  1188. opendir(|string path)
  1189. [readdir | read entry from directory handle, returns string]
  1190. readdir(|resource dir_handle)
  1191. [rewinddir | rewind directory handle, returns void]
  1192. rewinddir(|resource dir_handle)
  1193. [scandir | List files and directories inside the specified path, returns array]
  1194. scandir(|string directory, [int sorting_order])
  1195. ; -----------------------------------------------------------------------------
  1196. ; DOM XML - DOM XML functions
  1197. ; -----------------------------------------------------------------------------
  1198. [DomAttribute->name | Returns name of attribute, returns bool]
  1199. DomAttribute->name()|
  1200. [DomAttribute->specified | Checks if attribute is specified, returns bool]
  1201. DomAttribute->specified()|
  1202. [DomAttribute->value | Returns value of attribute, returns bool]
  1203. DomAttribute->value()|
  1204. [DomDocument->add_root [deprecated] | Adds a root node, returns resource]
  1205. DomDocument->add_root(|string name)
  1206. [DomDocument->create_attribute | Create new attribute, returns object]
  1207. DomDocument->create_attribute(|string name, string value)
  1208. [DomDocument->create_cdata_section | Create new cdata node, returns string]
  1209. DomDocument->create_cdata_section(|string content)
  1210. [DomDocument->create_comment | Create new comment node, returns object]
  1211. DomDocument->create_comment(|string content)
  1212. [DomDocument->create_element_ns | Create new element node with an associated namespace, returns object]
  1213. DomDocument->create_element_ns(|string uri, string name, [string prefix])
  1214. [DomDocument->create_element | Create new element node, returns object]
  1215. DomDocument->create_element(|string name)
  1216. [DomDocument->create_entity_reference | , returns object]
  1217. DomDocument->create_entity_reference(|string content)
  1218. [DomDocument->create_processing_instruction | Creates new PI node, returns string]
  1219. DomDocument->create_processing_instruction(|string content)
  1220. [DomDocument->create_text_node | Create new text node, returns object]
  1221. DomDocument->create_text_node(|string content)
  1222. [DomDocument->doctype | Returns the document type, returns object]
  1223. DomDocument->doctype()|
  1224. [DomDocument->document_element | Returns root element node, returns object]
  1225. DomDocument->document_element()|
  1226. [DomDocument->dump_file | Dumps the internal XML tree back into a file, returns string]
  1227. DomDocument->dump_file(|string filename, [bool compressionmode], [bool format])
  1228. [DomDocument->dump_mem | Dumps the internal XML tree back into a string, returns string]
  1229. DomDocument->dump_mem(|[bool format], [string encoding])
  1230. [DomDocument->get_element_by_id | Searches for an element with a certain id, returns object]
  1231. DomDocument->get_element_by_id(|string id)
  1232. [DomDocument->get_elements_by_tagname | , returns array]
  1233. DomDocument->get_elements_by_tagname(|string name)
  1234. [DomDocument->html_dump_mem | Dumps the internal XML tree back into a string as HTML, returns string]
  1235. DomDocument->html_dump_mem()|
  1236. [DomDocument->xinclude | Substitutes XIncludes in a DomDocument Object., returns int]
  1237. DomDocument->xinclude()|
  1238. [DomDocumentType->entities | Returns list of entities, returns array]
  1239. DomDocumentType->entities()|
  1240. [DomDocumentType->internal_subset | Returns internal subset, returns bool]
  1241. DomDocumentType->internal_subset()|
  1242. [DomDocumentType->name | Returns name of document type, returns string]
  1243. DomDocumentType->name()|
  1244. [DomDocumentType->notations | Returns list of notations, returns array]
  1245. DomDocumentType->notations()|
  1246. [DomDocumentType->public_id | Returns public id of document type, returns string]
  1247. DomDocumentType->public_id()|
  1248. [DomDocumentType->system_id | Returns system id of document type, returns string]
  1249. DomDocumentType->system_id()|
  1250. [DomElement->get_attribute_node | Returns value of attribute, returns object]
  1251. DomElement->get_attribute_node(|object attr)
  1252. [DomElement->get_attribute | Returns value of attribute, returns object]
  1253. DomElement->get_attribute(|string name)
  1254. [DomElement->get_elements_by_tagname | Gets elements by tagname, returns bool]
  1255. DomElement->get_elements_by_tagname(|string name)
  1256. [DomElement->has_attribute | Checks to see if attribute exists, returns bool]
  1257. DomElement->has_attribute(|string name)
  1258. [DomElement->remove_attribute | Removes attribute, returns bool]
  1259. DomElement->remove_attribute(|string name)
  1260. [DomElement->set_attribute | Adds new attribute, returns bool]
  1261. DomElement->set_attribute(|string name, string value)
  1262. [DomElement->tagname | Returns name of element, returns string]
  1263. DomElement->tagname()|
  1264. [DomNode->add_namespace | Adds a namespace declaration to a node., returns bool]
  1265. DomNode->add_namespace(|string uri, string prefix)
  1266. [DomNode->append_child | Adds new child at the end of the children, returns object]
  1267. DomNode->append_child(|object newnode)
  1268. [DomNode->append_sibling | Adds new sibling to a node, returns object]
  1269. DomNode->append_sibling(|object newnode)
  1270. [DomNode->attributes | Returns list of attributes, returns array]
  1271. DomNode->attributes()|
  1272. [DomNode->child_nodes | Returns children of node, returns array]
  1273. DomNode->child_nodes()|
  1274. [DomNode->clone_node | Clones a node, returns object]
  1275. DomNode->clone_node()|
  1276. [DomNode->dump_node | Dumps a single node, returns string]
  1277. DomNode->dump_node()|
  1278. [DomNode->first_child | Returns first child of node, returns object]
  1279. DomNode->first_child()|
  1280. [DomNode->get_content | Gets content of node, returns string]
  1281. DomNode->get_content()|
  1282. [DomNode->has_attributes | Checks if node has attributes, returns bool]
  1283. DomNode->has_attributes()|
  1284. [DomNode->has_child_nodes | Checks if node has children, returns bool]
  1285. DomNode->has_child_nodes()|
  1286. [DomNode->insert_before | Inserts new node as child, returns object]
  1287. DomNode->insert_before(|object newnode, object refnode)
  1288. [DomNode->is_blank_node | Checks if node is blank, returns bool]
  1289. DomNode->is_blank_node()|
  1290. [DomNode->last_child | Returns last child of node, returns object]
  1291. DomNode->last_child()|
  1292. [DomNode->next_sibling | Returns the next sibling of node, returns object]
  1293. DomNode->next_sibling()|
  1294. [DomNode->node_name | Returns name of node, returns string]
  1295. DomNode->node_name()|
  1296. [DomNode->node_type | Returns type of node, returns int]
  1297. DomNode->node_type()|
  1298. [DomNode->node_value | Returns value of a node, returns string]
  1299. DomNode->node_value()|
  1300. [DomNode->owner_document | Returns the document this node belongs to, returns object]
  1301. DomNode->owner_document()|
  1302. [DomNode->parent_node | Returns the parent of the node, returns object]
  1303. DomNode->parent_node()|
  1304. [DomNode->prefix | Returns name space prefix of node, returns string]
  1305. DomNode->prefix()|
  1306. [DomNode->previous_sibling | Returns the previous sibling of node, returns object]
  1307. DomNode->previous_sibling()|
  1308. [DomNode->remove_child | Removes child from list of children, returns object]
  1309. DomNode->remove_child(|object oldchild)
  1310. [DomNode->replace_child | Replaces a child, returns object]
  1311. DomNode->replace_child(|object oldnode, object newnode)
  1312. [DomNode->replace_node | Replaces node, returns object]
  1313. DomNode->replace_node(|object newnode)
  1314. [DomNode->set_content | Sets content of node, returns bool]
  1315. DomNode->set_content()|
  1316. [DomNode->set_name | Sets name of node, returns bool]
  1317. DomNode->set_name()|
  1318. [DomNode->set_namespace | Sets namespace of a node., returns void]
  1319. DomNode->set_namespace(|string uri, [string prefix])
  1320. [DomNode->unlink_node | Deletes node, returns object]
  1321. DomNode->unlink_node()|
  1322. [DomProcessingInstruction->data | Returns data of pi node, returns string]
  1323. DomProcessingInstruction->data()|
  1324. [DomProcessingInstruction->target | Returns target of pi node, returns string]
  1325. DomProcessingInstruction->target()|
  1326. [DomXsltStylesheet->process | Applies the XSLT-Transformation on a DomDocument Object., returns object]
  1327. DomXsltStylesheet->process(|object DomDocument, [array xslt_parameters], [bool param_is_xpath])
  1328. [DomXsltStylesheet->result_dump_file | Dumps the result from a XSLT-Transformation into a file, returns string]
  1329. DomXsltStylesheet->result_dump_file(|object DomDocument, string filename)
  1330. [DomXsltStylesheet->result_dump_mem | Dumps the result from a XSLT-Transformation back into a string, returns string]
  1331. DomXsltStylesheet->result_dump_mem(|object DomDocument)
  1332. [domxml_new_doc | Creates new empty XML document, returns object]
  1333. domxml_new_doc(|string version)
  1334. [domxml_open_file | Creates a DOM object from XML file, returns object]
  1335. domxml_open_file(|string filename)
  1336. [domxml_open_mem | Creates a DOM object of an XML document, returns object]
  1337. domxml_open_mem(|string str)
  1338. [domxml_version | Get XML library version, returns string]
  1339. domxml_version()|
  1340. [domxml_xmltree | Creates a tree of PHP objects from an XML document, returns object]
  1341. domxml_xmltree(|string str)
  1342. [domxml_xslt_stylesheet_doc | Creates a DomXsltStylesheet Object from a DomDocument Object., returns object]
  1343. domxml_xslt_stylesheet_doc(|object DocDocument Object)
  1344. [domxml_xslt_stylesheet_file | Creates a DomXsltStylesheet Object from a xsl document in a file., returns object]
  1345. domxml_xslt_stylesheet_file(|string xsl file)
  1346. [domxml_xslt_stylesheet | Creates a DomXsltStylesheet Object from a xml document in a string., returns object]
  1347. domxml_xslt_stylesheet(|string xsl document)
  1348. [xpath_eval_expression | Evaluates the XPath Location Path in the given string, returns array]
  1349. xpath_eval_expression(|object xpath_context)
  1350. [xpath_eval | Evaluates the XPath Location Path in the given string, returns array]
  1351. xpath_eval(|object xpath context, string xpath expression, [object contextnode])
  1352. [xpath_new_context | Creates new xpath context, returns object]
  1353. xpath_new_context(|object dom document)
  1354. [xptr_eval | Evaluate the XPtr Location Path in the given string, returns int]
  1355. xptr_eval(|[object xpath_context], string eval_str)
  1356. [xptr_new_context | Create new XPath Context, returns string]
  1357. xptr_new_context(|[object doc_handle])
  1358. ; -----------------------------------------------------------------------------
  1359. ; .NET - .NET functions
  1360. ; -----------------------------------------------------------------------------
  1361. [dotnet_load | Loads a DOTNET module, returns int]
  1362. dotnet_load(|string assembly_name, [string datatype_name], [int codepage])
  1363. ; -----------------------------------------------------------------------------
  1364. ; Errors and Logging - Error Handling and Logging Functions
  1365. ; -----------------------------------------------------------------------------
  1366. [debug_backtrace | Generates a backtrace, returns array]
  1367. debug_backtrace()|
  1368. [debug_print_backtrace | Prints a backtrace, returns void]
  1369. debug_print_backtrace()|
  1370. [error_log | Send an error message somewhere, returns int]
  1371. error_log(|string message, [int message_type], [string destination], [string extra_headers])
  1372. [error_reporting | Sets which PHP errors are reported, returns int]
  1373. error_reporting(|[int level])
  1374. [restore_error_handler | Restores the previous error handler function, returns void]
  1375. restore_error_handler()|
  1376. [set_error_handler | Sets a user-defined error handler function., returns string]
  1377. set_error_handler(|callback error_handler)
  1378. [trigger_error | Generates a user-level error/warning/notice message, returns void]
  1379. trigger_error(|string error_msg, [int error_type])
  1380. [user_error | Alias of trigger_error]
  1381. ; -----------------------------------------------------------------------------
  1382. ; fam - File alteration monitor functions
  1383. ; -----------------------------------------------------------------------------
  1384. [fam_cancel_monitor | Terminate monitoring, returns bool]
  1385. fam_cancel_monitor(|resource fam, resource fam_monitor)
  1386. [fam_close | Close FAM connection]
  1387. fam_close(|resource fam)
  1388. [fam_monitor_collection | Monitor a collection of files in a directory for changes, returns resource]
  1389. fam_monitor_collection(|resource fam, string dirname, int depth, string mask)
  1390. [fam_monitor_directory | Monitor a directory for changes, returns resource]
  1391. fam_monitor_directory(|resource fam, string dirname)
  1392. [fam_monitor_file | Monitor a regular file for changes, returns resource]
  1393. fam_monitor_file(|resource fam, string filename)
  1394. [fam_next_event | ..., returns array]
  1395. fam_next_event(|resource fam)
  1396. [fam_open | Open connection to FAM daemon, returns resource]
  1397. fam_open(|[string appname])
  1398. [fam_pending | Check for pending FAM events, returns bool]
  1399. fam_pending(|resource fam)
  1400. [fam_resume_monitor | Resume suspended monitoring, returns bool]
  1401. fam_resume_monitor(|resource fam, resource fam_monitor)
  1402. [fam_suspend_monitor | Temporarily suspend monitoring, returns bool]
  1403. fam_suspend_monitor(|resource fam, resource fam_monitor)
  1404. ; -----------------------------------------------------------------------------
  1405. ; FrontBase - FrontBase Functions
  1406. ; -----------------------------------------------------------------------------
  1407. [fbsql_affected_rows | Get number of affected rows in previous FrontBase operation, returns int]
  1408. fbsql_affected_rows(|[resource link_identifier])
  1409. [fbsql_autocommit | Enable or disable autocommit, returns bool]
  1410. fbsql_autocommit(|resource link_identifier, [bool OnOff])
  1411. [fbsql_change_user | Change logged in user of the active connection, returns resource]
  1412. fbsql_change_user(|string user, string password, [string database], [resource link_identifier])
  1413. [fbsql_close | Close FrontBase connection, returns bool]
  1414. fbsql_close(|[resource link_identifier])
  1415. [fbsql_commit | Commits a transaction to the database, returns bool]
  1416. fbsql_commit(|[resource link_identifier])
  1417. [fbsql_connect | Open a connection to a FrontBase Server, returns resource]
  1418. fbsql_connect(|[string hostname], [string username], [string password])
  1419. [fbsql_create_blob | Create a BLOB, returns string]
  1420. fbsql_create_blob(|string blob_data, [resource link_identifier])
  1421. [fbsql_create_clob | Create a CLOB, returns string]
  1422. fbsql_create_clob(|string clob_data, [resource link_identifier])
  1423. [fbsql_create_db | Create a FrontBase database, returns bool]
  1424. fbsql_create_db(|string database_name, [resource link_identifier])
  1425. [fbsql_data_seek | Move internal result pointer, returns bool]
  1426. fbsql_data_seek(|resource result_identifier, int row_number)
  1427. [fbsql_database_password | Sets or retrieves the password for a FrontBase database, returns string]
  1428. fbsql_database_password(|resource link_identifier, [string database_password])
  1429. [fbsql_database | Get or set the database name used with a connection, returns string]
  1430. fbsql_database(|resource link_identifier, [string database])
  1431. [fbsql_db_query | Send a FrontBase query, returns resource]
  1432. fbsql_db_query(|string database, string query, [resource link_identifier])
  1433. [fbsql_db_status | Get the status for a given database, returns int]
  1434. fbsql_db_status(|string database_name, [resource link_identifier])
  1435. [fbsql_drop_db | Drop (delete) a FrontBase database, returns bool]
  1436. fbsql_drop_db(|string database_name, [resource link_identifier])
  1437. [fbsql_errno | Returns the numerical value of the error message from previous FrontBase operation, returns int]
  1438. fbsql_errno(|[resource link_identifier])
  1439. [fbsql_error | Returns the text of the error message from previous FrontBase operation, returns string]
  1440. fbsql_error(|[resource link_identifier])
  1441. [fbsql_fetch_array | Fetch a result row as an associative array, a numeric array, or both, returns array]
  1442. fbsql_fetch_array(|resource result, [int result_type])
  1443. [fbsql_fetch_assoc | Fetch a result row as an associative array, returns array]
  1444. fbsql_fetch_assoc(|resource result)
  1445. [fbsql_fetch_field | Get column information from a result and return as an object, returns object]
  1446. fbsql_fetch_field(|resource result, [int field_offset])
  1447. [fbsql_fetch_lengths | Get the length of each output in a result, returns array]
  1448. fbsql_fetch_lengths(|[resource result])
  1449. [fbsql_fetch_object | Fetch a result row as an object, returns object]
  1450. fbsql_fetch_object(|resource result, [int result_type])
  1451. [fbsql_fetch_row | Get a result row as an enumerated array, returns array]
  1452. fbsql_fetch_row(|resource result)
  1453. [fbsql_field_flags | Get the flags associated with the specified field in a result, returns string]
  1454. fbsql_field_flags(|resource result, int field_offset)
  1455. [fbsql_field_len | Returns the length of the specified field, returns int]
  1456. fbsql_field_len(|resource result, int field_offset)
  1457. [fbsql_field_name | Get the name of the specified field in a result, returns string]
  1458. fbsql_field_name(|resource result, int field_index)
  1459. [fbsql_field_seek | Set result pointer to a specified field offset, returns bool]
  1460. fbsql_field_seek(|resource result, int field_offset)
  1461. [fbsql_field_table | Get name of the table the specified field is in, returns string]
  1462. fbsql_field_table(|resource result, int field_offset)
  1463. [fbsql_field_type | Get the type of the specified field in a result, returns string]
  1464. fbsql_field_type(|resource result, int field_offset)
  1465. [fbsql_free_result | Free result memory, returns bool]
  1466. fbsql_free_result(|resource result)
  1467. [fbsql_get_autostart_info | No description given yet, returns array]
  1468. fbsql_get_autostart_info(|[resource link_identifier])
  1469. [fbsql_hostname | Get or set the host name used with a connection, returns string]
  1470. fbsql_hostname(|resource link_identifier, [string host_name])
  1471. [fbsql_insert_id | Get the id generated from the previous INSERT operation, returns int]
  1472. fbsql_insert_id(|[resource link_identifier])
  1473. [fbsql_list_dbs | List databases available on a FrontBase server, returns resource]
  1474. fbsql_list_dbs(|[resource link_identifier])
  1475. [fbsql_list_fields | List FrontBase result fields, returns resource]
  1476. fbsql_list_fields(|string database_name, string table_name, [resource link_identifier])
  1477. [fbsql_list_tables | List tables in a FrontBase database, returns resource]
  1478. fbsql_list_tables(|string database, [resource link_identifier])
  1479. [fbsql_next_result | Move the internal result pointer to the next result, returns bool]
  1480. fbsql_next_result(|resource result_id)
  1481. [fbsql_num_fields | Get number of fields in result, returns int]
  1482. fbsql_num_fields(|resource result)
  1483. [fbsql_num_rows | Get number of rows in result, returns int]
  1484. fbsql_num_rows(|resource result)
  1485. [fbsql_password | Get or set the user password used with a connection, returns string]
  1486. fbsql_password(|resource link_identifier, [string password])
  1487. [fbsql_pconnect | Open a persistent connection to a FrontBase Server, returns resource]
  1488. fbsql_pconnect(|[string hostname], [string username], [string password])
  1489. [fbsql_query | Send a FrontBase query, returns resource]
  1490. fbsql_query(|string query, [resource link_identifier])
  1491. [fbsql_read_blob | Read a BLOB from the database, returns string]
  1492. fbsql_read_blob(|string blob_handle, [resource link_identifier])
  1493. [fbsql_read_clob | Read a CLOB from the database, returns string]
  1494. fbsql_read_clob(|string clob_handle, [resource link_identifier])
  1495. [fbsql_result | Get result data, returns mixed]
  1496. fbsql_result(|resource result, int row, [mixed field])
  1497. [fbsql_rollback | Rollback a transaction to the database, returns bool]
  1498. fbsql_rollback(|[resource link_identifier])
  1499. [fbsql_select_db | Select a FrontBase database, returns bool]
  1500. fbsql_select_db(|string database_name, [resource link_identifier])
  1501. [fbsql_set_lob_mode | Set the LOB retrieve mode for a FrontBase result set, returns bool]
  1502. fbsql_set_lob_mode(|resource result, string database_name)
  1503. [fbsql_set_transaction | Set the transaction locking and isolation, returns void]
  1504. fbsql_set_transaction(|resource link_identifier, int Locking, int Isolation)
  1505. [fbsql_start_db | Start a database on local or remote server, returns bool]
  1506. fbsql_start_db(|string database_name, [resource link_identifier])
  1507. [fbsql_stop_db | Stop a database on local or remote server, returns bool]
  1508. fbsql_stop_db(|string database_name, [resource link_identifier])
  1509. [fbsql_tablename | Get table name of field, returns string]
  1510. fbsql_tablename(|resource result, int i)
  1511. [fbsql_username | Get or set the host user used with a connection, returns string]
  1512. fbsql_username(|resource link_identifier, [string username])
  1513. [fbsql_warnings | Enable or disable FrontBase warnings, returns bool]
  1514. fbsql_warnings(|[bool OnOff])
  1515. ; -----------------------------------------------------------------------------
  1516. ; filePro - filePro functions
  1517. ; -----------------------------------------------------------------------------
  1518. [filepro_fieldcount | Find out how many fields are in a filePro database, returns int]
  1519. filepro_fieldcount()|
  1520. [filepro_fieldname | Gets the name of a field, returns string]
  1521. filepro_fieldname(|int field_number)
  1522. [filepro_fieldtype | Gets the type of a field, returns string]
  1523. filepro_fieldtype(|int field_number)
  1524. [filepro_fieldwidth | Gets the width of a field, returns int]
  1525. filepro_fieldwidth(|int field_number)
  1526. [filepro_retrieve | Retrieves data from a filePro database, returns string]
  1527. filepro_retrieve(|int row_number, int field_number)
  1528. [filepro_rowcount | Find out how many rows are in a filePro database, returns int]
  1529. filepro_rowcount()|
  1530. [filepro | Read and verify the map file, returns bool]
  1531. filepro(|string directory)
  1532. ; -----------------------------------------------------------------------------
  1533. ; Filesystem - Filesystem functions
  1534. ; -----------------------------------------------------------------------------
  1535. [basename | Returns filename component of path, returns string]
  1536. basename(|string path, [string suffix])
  1537. [chgrp | Changes file group, returns bool]
  1538. chgrp(|string filename, mixed group)
  1539. [chmod | Changes file mode, returns bool]
  1540. chmod(|string filename, int mode)
  1541. [chown | Changes file owner, returns bool]
  1542. chown(|string filename, mixed user)
  1543. [clearstatcache | Clears file status cache, returns void]
  1544. clearstatcache()|
  1545. [copy | Copies file, returns bool]
  1546. copy(|string source, string dest)
  1547. [delete | See unlink or unset, returns void]
  1548. delete(|string file)
  1549. [dirname | Returns directory name component of path, returns string]
  1550. dirname(|string path)
  1551. [disk_free_space | Returns available space in directory, returns float]
  1552. disk_free_space(|string directory)
  1553. [disk_total_space | Returns the total size of a directory, returns float]
  1554. disk_total_space(|string directory)
  1555. [diskfreespace | Alias of disk_free_space]
  1556. [fclose | Closes an open file pointer, returns bool]
  1557. fclose(|resource handle)
  1558. [feof | Tests for end-of-file on a file pointer, returns bool]
  1559. feof(|resource handle)
  1560. [fflush | Flushes the output to a file, returns bool]
  1561. fflush(|resource handle)
  1562. [fgetc | Gets character from file pointer, returns string]
  1563. fgetc(|resource handle)
  1564. [fgetcsv | Gets line from file pointer and parse for CSV fields, returns array]
  1565. fgetcsv(|resource handle, int length, [string delimiter], [string enclosure])
  1566. [fgets | Gets line from file pointer, returns string]
  1567. fgets(|resource handle, [int length])
  1568. [fgetss | Gets line from file pointer and strip HTML tags, returns string]
  1569. fgetss(|resource handle, int length, [string allowable_tags])
  1570. [file_exists | Checks whether a file or directory exists, returns bool]
  1571. file_exists(|string filename)
  1572. [file_get_contents | Reads entire file into a string, returns string]
  1573. file_get_contents(|string filename, [int use_include_path], [resource context])
  1574. [file_put_contents | Write a string to a file, returns int]
  1575. file_put_contents(|string filename, string data, [int flags], [resource context])
  1576. [file | Reads entire file into an array, returns array]
  1577. file(|string filename, [int use_include_path], [resource context])
  1578. [fileatime | Gets last access time of file, returns int]
  1579. fileatime(|string filename)
  1580. [filectime | Gets inode change time of file, returns int]
  1581. filectime(|string filename)
  1582. [filegroup | Gets file group, returns int]
  1583. filegroup(|string filename)
  1584. [fileinode | Gets file inode, returns int]
  1585. fileinode(|string filename)
  1586. [filemtime | Gets file modification time, returns int]
  1587. filemtime(|string filename)
  1588. [fileowner | Gets file owner, returns int]
  1589. fileowner(|string filename)
  1590. [fileperms | Gets file permissions, returns int]
  1591. fileperms(|string filename)
  1592. [filesize | Gets file size, returns int]
  1593. filesize(|string filename)
  1594. [filetype | Gets file type, returns string]
  1595. filetype(|string filename)
  1596. [flock | Portable advisory file locking, returns bool]
  1597. flock(|resource handle, int operation, [int &wouldblock])
  1598. [fnmatch | Match filename against a pattern, returns array]
  1599. fnmatch(|string pattern, string string, [int flags])
  1600. [fopen | Opens file or URL, returns resource]
  1601. fopen(|string filename, string mode, [int use_include_path], [resource zcontext])
  1602. [fpassthru | Output all remaining data on a file pointer, returns int]
  1603. fpassthru(|resource handle)
  1604. [fputs | Alias of fwrite]
  1605. [fread | Binary-safe file read, returns string]
  1606. fread(|resource handle, int length)
  1607. [fscanf | Parses input from a file according to a format, returns mixed]
  1608. fscanf(|resource handle, string format, [string var1])
  1609. [fseek | Seeks on a file pointer, returns int]
  1610. fseek(|resource handle, int offset, [int whence])
  1611. [fstat | Gets information about a file using an open file pointer, returns array]
  1612. fstat(|resource handle)
  1613. [ftell | Tells file pointer read/write position, returns int]
  1614. ftell(|resource handle)
  1615. [ftruncate | Truncates a file to a given length, returns bool]
  1616. ftruncate(|resource handle, int size)
  1617. [fwrite | Binary-safe file write, returns int]
  1618. fwrite(|resource handle, string string, [int length])
  1619. [glob | Find pathnames matching a pattern, returns array]
  1620. glob(|string pattern, [int flags])
  1621. [is_dir | Tells whether the filename is a directory, returns bool]
  1622. is_dir(|string filename)
  1623. [is_executable | Tells whether the filename is executable, returns bool]
  1624. is_executable(|string filename)
  1625. [is_file | Tells whether the filename is a regular file, returns bool]
  1626. is_file(|string filename)
  1627. [is_link | Tells whether the filename is a symbolic link, returns bool]
  1628. is_link(|string filename)
  1629. [is_readable | Tells whether the filename is readable, returns bool]
  1630. is_readable(|string filename)
  1631. [is_uploaded_file | Tells whether the file was uploaded via HTTP POST, returns bool]
  1632. is_uploaded_file(|string filename)
  1633. [is_writable | Tells whether the filename is writable, returns bool]
  1634. is_writable(|string filename)
  1635. [is_writeable | Alias of is_writable]
  1636. [link | Create a hard link, returns bool]
  1637. link(|string target, string link)
  1638. [linkinfo | Gets information about a link, returns int]
  1639. linkinfo(|string path)
  1640. [lstat | Gives information about a file or symbolic link, returns array]
  1641. lstat(|string filename)
  1642. [mkdir | Makes directory, returns bool]
  1643. mkdir(|string pathname, [int mode])
  1644. [move_uploaded_file | Moves an uploaded file to a new location, returns bool]
  1645. move_uploaded_file(|string filename, string destination)
  1646. [parse_ini_file | Parse a configuration file, returns array]
  1647. parse_ini_file(|string filename, [bool process_sections])
  1648. [pathinfo | Returns information about a file path, returns array]
  1649. pathinfo(|string path)
  1650. [pclose | Closes process file pointer, returns int]
  1651. pclose(|resource handle)
  1652. [popen | Opens process file pointer, returns resource]
  1653. popen(|string command, string mode)
  1654. [readfile | Outputs a file, returns int]
  1655. readfile(|string filename, [bool use_include_path], [resource context])
  1656. [readlink | Returns the target of a symbolic link, returns string]
  1657. readlink(|string path)
  1658. [realpath | Returns canonicalized absolute pathname, returns string]
  1659. realpath(|string path)
  1660. [rename | Renames a file, returns bool]
  1661. rename(|string oldname, string newname)
  1662. [rewind | Rewind the position of a file pointer, returns bool]
  1663. rewind(|resource handle)
  1664. [rmdir | Removes directory, returns bool]
  1665. rmdir(|string dirname)
  1666. [set_file_buffer | Alias of stream_set_write_buffer]
  1667. [stat | Gives information about a file, returns array]
  1668. stat(|string filename)
  1669. [symlink | Creates a symbolic link, returns bool]
  1670. symlink(|string target, string link)
  1671. [tempnam | Create file with unique file name, returns string]
  1672. tempnam(|string dir, string prefix)
  1673. [tmpfile | Creates a temporary file, returns resource]
  1674. tmpfile()|
  1675. [touch | Sets access and modification time of file, returns bool]
  1676. touch(|string filename, [int time], [int atime])
  1677. [umask | Changes the current umask, returns int]
  1678. umask(|[int mask])
  1679. [unlink | Deletes a file, returns bool]
  1680. unlink(|string filename)
  1681. ; -----------------------------------------------------------------------------
  1682. ; FDF - Forms Data Format functions
  1683. ; -----------------------------------------------------------------------------
  1684. [fdf_add_doc_javascript | Adds javascript code to the FDF document, returns bool]
  1685. fdf_add_doc_javascript(|resource fdfdoc, string script_name, string script_code)
  1686. [fdf_add_template | Adds a template into the FDF document, returns bool]
  1687. fdf_add_template(|resource fdfdoc, int newpage, string filename, string template, int rename)
  1688. [fdf_close | Close an FDF document, returns bool]
  1689. fdf_close(|resource fdf_document)
  1690. [fdf_create | Create a new FDF document, returns resource]
  1691. fdf_create()|
  1692. [fdf_enum_values | Call a user defined function for each document value, returns bool]
  1693. fdf_enum_values(|resource fdfdoc, callback function, [mixed userdata])
  1694. [fdf_errno | Return error code for last fdf operation, returns int]
  1695. fdf_errno()|
  1696. [fdf_error | Return error description for fdf error code, returns string]
  1697. fdf_error(|[int error_code])
  1698. [fdf_get_ap | Get the appearance of a field, returns bool]
  1699. fdf_get_ap(|resource fdf_document, string field, int face, string filename)
  1700. [fdf_get_attachment | Extracts uploaded file embedded in the FDF, returns array]
  1701. fdf_get_attachment(|resource fdf_document, string fieldname, string savepath)
  1702. [fdf_get_encoding | Get the value of the /Encoding key, returns string]
  1703. fdf_get_encoding(|resource fdf_document)
  1704. [fdf_get_file | Get the value of the /F key, returns string]
  1705. fdf_get_file(|resource fdf_document)
  1706. [fdf_get_flags | Gets the flags of a field, returns ]
  1707. fdf_get_flags()|
  1708. [fdf_get_opt | Gets a value from the opt array of a field, returns mixed]
  1709. fdf_get_opt(|resource fdfdof, string fieldname, [int element])
  1710. [fdf_get_status | Get the value of the /STATUS key, returns string]
  1711. fdf_get_status(|resource fdf_document)
  1712. [fdf_get_value | Get the value of a field, returns string]
  1713. fdf_get_value(|resource fdf_document, string fieldname, [int which])
  1714. [fdf_get_version | Gets version number for FDF api or file, returns string]
  1715. fdf_get_version(|[resource fdf_document])
  1716. [fdf_header | Sets FDF-specific output headers, returns bool]
  1717. fdf_header()|
  1718. [fdf_next_field_name | Get the next field name, returns string]
  1719. fdf_next_field_name(|resource fdf_document, [string fieldname])
  1720. [fdf_open_string | Read a FDF document from a string, returns resource]
  1721. fdf_open_string(|string fdf_data)
  1722. [fdf_open | Open a FDF document, returns resource]
  1723. fdf_open(|string filename)
  1724. [fdf_remove_item | Sets target frame for form, returns bool]
  1725. fdf_remove_item(|resource fdfdoc, string fieldname, int item)
  1726. [fdf_save_string | Returns the FDF document as a string, returns string]
  1727. fdf_save_string(|resource fdf_document)
  1728. [fdf_save | Save a FDF document, returns bool]
  1729. fdf_save(|resource fdf_document, [string filename])
  1730. [fdf_set_ap | Set the appearance of a field, returns bool]
  1731. fdf_set_ap(|resource fdf_document, string field_name, int face, string filename, int page_number)
  1732. [fdf_set_encoding | Sets FDF character encoding, returns bool]
  1733. fdf_set_encoding(|resource fdf_document, string encoding)
  1734. [fdf_set_file | Set PDF document to display FDF data in, returns bool]
  1735. fdf_set_file(|resource fdf_document, string url, [string target_frame])
  1736. [fdf_set_flags | Sets a flag of a field, returns bool]
  1737. fdf_set_flags(|resource fdf_document, string fieldname, int whichFlags, int newFlags)
  1738. [fdf_set_javascript_action | Sets an javascript action of a field, returns bool]
  1739. fdf_set_javascript_action(|resource fdf_document, string fieldname, int trigger, string script)
  1740. [fdf_set_opt | Sets an option of a field, returns bool]
  1741. fdf_set_opt(|resource fdf_document, string fieldname, int element, string str1, string str2)
  1742. [fdf_set_status | Set the value of the /STATUS key, returns bool]
  1743. fdf_set_status(|resource fdf_document, string status)
  1744. [fdf_set_submit_form_action | Sets a submit form action of a field, returns bool]
  1745. fdf_set_submit_form_action(|resource fdf_document, string fieldname, int trigger, string script, int flags)
  1746. [fdf_set_target_frame | Set target frame for form display, returns bool]
  1747. fdf_set_target_frame(|resource fdf_document, string frame_name)
  1748. [fdf_set_value | Set the value of a field, returns bool]
  1749. fdf_set_value(|resource fdf_document, string fieldname, mixed value, [int isName])
  1750. [fdf_set_version | Sets version number for a FDF file, returns string]
  1751. fdf_set_version(|resource fdf_document, string version)
  1752. ; -----------------------------------------------------------------------------
  1753. ; FriBiDi - FriBiDi functions
  1754. ; -----------------------------------------------------------------------------
  1755. [fribidi_log2vis | Convert a logical string to a visual one, returns string]
  1756. fribidi_log2vis(|string str, string direction, int charset)
  1757. ; -----------------------------------------------------------------------------
  1758. ; FTP - FTP functions
  1759. ; -----------------------------------------------------------------------------
  1760. [ftp_alloc | Allocates space for a file to be uploaded., returns bool]
  1761. ftp_alloc(|resource ftp_stream, int filesize, [string &result])
  1762. [ftp_cdup | Changes to the parent directory, returns bool]
  1763. ftp_cdup(|resource ftp_stream)
  1764. [ftp_chdir | Changes directories on a FTP server, returns bool]
  1765. ftp_chdir(|resource ftp_stream, string directory)
  1766. [ftp_chmod | Set permissions on a file via FTP, returns string]
  1767. ftp_chmod(|resource ftp_stream, int mode, string filename)
  1768. [ftp_close | Closes an FTP connection, returns void]
  1769. ftp_close(|resource ftp_stream)
  1770. [ftp_connect | Opens an FTP connection, returns resource]
  1771. ftp_connect(|string host, [int port], [int timeout])
  1772. [ftp_delete | Deletes a file on the FTP server, returns bool]
  1773. ftp_delete(|resource ftp_stream, string path)
  1774. [ftp_exec | Requests execution of a program on the FTP server, returns bool]
  1775. ftp_exec(|resource ftp_stream, string command)
  1776. [ftp_fget | Downloads a file from the FTP server and saves to an open file, returns bool]
  1777. ftp_fget(|resource ftp_stream, resource handle, string remote_file, int mode, [int resumepos])
  1778. [ftp_fput | Uploads from an open file to the FTP server, returns bool]
  1779. ftp_fput(|resource ftp_stream, string remote_file, resource handle, int mode, [int startpos])
  1780. [ftp_get_option | Retrieves various runtime behaviours of the current FTP stream, returns mixed]
  1781. ftp_get_option(|resource ftp_stream, int option)
  1782. [ftp_get | Downloads a file from the FTP server, returns bool]
  1783. ftp_get(|resource ftp_stream, string local_file, string remote_file, int mode, [int resumepos])
  1784. [ftp_login | Logs in to an FTP connection, returns bool]
  1785. ftp_login(|resource ftp_stream, string username, string password)
  1786. [ftp_mdtm | Returns the last modified time of the given file, returns int]
  1787. ftp_mdtm(|resource ftp_stream, string remote_file)
  1788. [ftp_mkdir | Creates a directory, returns string]
  1789. ftp_mkdir(|resource ftp_stream, string directory)
  1790. [ftp_nb_continue | Continues retrieving/sending a file (non-blocking), returns int]
  1791. ftp_nb_continue(|resource ftp_stream)
  1792. [ftp_nb_fget | Retrieves a file from the FTP server and writes it to an open file (non-blocking), returns int]
  1793. ftp_nb_fget(|resource ftp_stream, resource handle, string remote_file, int mode, [int resumepos])
  1794. [ftp_nb_fput | Stores a file from an open file to the FTP server (non-blocking), returns int]
  1795. ftp_nb_fput(|resource ftp_stream, string remote_file, resource handle, int mode, [int startpos])
  1796. [ftp_nb_get | Retrieves a file from the FTP server and writes it to a local file (non-blocking), returns int]
  1797. ftp_nb_get(|resource ftp_stream, string local_file, string remote_file, int mode, [int resumepos])
  1798. [ftp_nb_put | Stores a file on the FTP server (non-blocking), returns int]
  1799. ftp_nb_put(|resource ftp_stream, string remote_file, string local_file, int mode, [int startpos])
  1800. [ftp_nlist | Returns a list of files in the given directory, returns array]
  1801. ftp_nlist(|resource ftp_stream, string directory)
  1802. [ftp_pasv | Turns passive mode on or off, returns bool]
  1803. ftp_pasv(|resource ftp_stream, bool pasv)
  1804. [ftp_put | Uploads a file to the FTP server, returns bool]
  1805. ftp_put(|resource ftp_stream, string remote_file, string local_file, int mode, [int startpos])
  1806. [ftp_pwd | Returns the current directory name, returns string]
  1807. ftp_pwd(|resource ftp_stream)
  1808. [ftp_quit | Alias of ftp_close]
  1809. [ftp_raw | Sends an arbitrary command to an FTP server, returns array]
  1810. ftp_raw(|resource ftp_stream, string command)
  1811. [ftp_rawlist | Returns a detailed list of files in the given directory, returns array]
  1812. ftp_rawlist(|resource ftp_stream, string directory)
  1813. [ftp_rename | Renames a file on the FTP server, returns bool]
  1814. ftp_rename(|resource ftp_stream, string from, string to)
  1815. [ftp_rmdir | Removes a directory, returns bool]
  1816. ftp_rmdir(|resource ftp_stream, string directory)
  1817. [ftp_set_option | Set miscellaneous runtime FTP options, returns bool]
  1818. ftp_set_option(|resource ftp_stream, int option, mixed value)
  1819. [ftp_site | Sends a SITE command to the server, returns bool]
  1820. ftp_site(|resource ftp_stream, string cmd)
  1821. [ftp_size | Returns the size of the given file, returns int]
  1822. ftp_size(|resource ftp_stream, string remote_file)
  1823. [ftp_ssl_connect | Opens an Secure SSL-FTP connection, returns resource]
  1824. ftp_ssl_connect(|string host, [int port], [int timeout])
  1825. [ftp_systype | Returns the system type identifier of the remote FTP server, returns string]
  1826. ftp_systype(|resource ftp_stream)
  1827. ; -----------------------------------------------------------------------------
  1828. ; Function handling - Function Handling functions
  1829. ; -----------------------------------------------------------------------------
  1830. [call_user_func_array | Call a user function given with an array of parameters, returns mixed]
  1831. call_user_func_array(|callback function, [array param_arr])
  1832. [call_user_func | Call a user function given by the first parameter, returns mixed]
  1833. call_user_func(|callback function, [mixed parameter], [mixed ...])
  1834. [create_function | Create an anonymous (lambda-style) function, returns string]
  1835. create_function(|string args, string code)
  1836. [func_get_arg | Return an item from the argument list, returns mixed]
  1837. func_get_arg(|int arg_num)
  1838. [func_get_args | Returns an array comprising a function's argument list, returns array]
  1839. func_get_args()|
  1840. [func_num_args | Returns the number of arguments passed to the function, returns int]
  1841. func_num_args()|
  1842. [function_exists | Return TRUE if the given function has been defined, returns bool]
  1843. function_exists(|string function_name)
  1844. [get_defined_functions | Returns an array of all defined functions, returns array]
  1845. get_defined_functions()|
  1846. [register_shutdown_function | Register a function for execution on shutdown, returns void]
  1847. register_shutdown_function(|callback function)
  1848. [register_tick_function | Register a function for execution on each tick, returns void]
  1849. register_tick_function(|callback function, [mixed arg])
  1850. [unregister_tick_function | De-register a function for execution on each tick, returns void]
  1851. unregister_tick_function(|string function_name)
  1852. ; -----------------------------------------------------------------------------
  1853. ; gettext - Gettext
  1854. ; -----------------------------------------------------------------------------
  1855. [bind_textdomain_codeset | Specify the character encoding in which the messages from the DOMAIN message catalog will be returned, returns string]
  1856. bind_textdomain_codeset(|string domain, string codeset)
  1857. [bindtextdomain | Sets the path for a domain, returns string]
  1858. bindtextdomain(|string domain, string directory)
  1859. [dcgettext | Overrides the domain for a single lookup, returns string]
  1860. dcgettext(|string domain, string message, int category)
  1861. [dcngettext | Plural version of dcgettext, returns string]
  1862. dcngettext(|string domain, string msgid1, string msgid2, int n, int category)
  1863. [dgettext | Override the current domain, returns string]
  1864. dgettext(|string domain, string message)
  1865. [dngettext | Plural version of dgettext, returns string]
  1866. dngettext(|string domain, string msgid1, string msgid2, int n)
  1867. [gettext | Lookup a message in the current domain, returns string]
  1868. gettext(|string message)
  1869. [ngettext | Plural version of gettext, returns string]
  1870. ngettext(|string msgid1, string msgid2, int n)
  1871. [textdomain | Sets the default domain, returns string]
  1872. textdomain(|string text_domain)
  1873. ; -----------------------------------------------------------------------------
  1874. ; GMP - GMP functions
  1875. ; -----------------------------------------------------------------------------
  1876. [gmp_abs | Absolute value, returns resource]
  1877. gmp_abs(|resource a)
  1878. [gmp_add | Add numbers, returns resource]
  1879. gmp_add(|resource a, resource b)
  1880. [gmp_and | Logical AND, returns resource]
  1881. gmp_and(|resource a, resource b)
  1882. [gmp_clrbit | Clear bit, returns resource]
  1883. gmp_clrbit(|resource &a, int index)
  1884. [gmp_cmp | Compare numbers, returns int]
  1885. gmp_cmp(|resource a, resource b)
  1886. [gmp_com | Calculates one's complement of a, returns resource]
  1887. gmp_com(|resource a)
  1888. [gmp_div_q | Divide numbers, returns resource]
  1889. gmp_div_q(|resource a, resource b, [int round])
  1890. [gmp_div_qr | Divide numbers and get quotient and remainder, returns array]
  1891. gmp_div_qr(|resource n, resource d, [int round])
  1892. [gmp_div_r | Remainder of the division of numbers, returns resource]
  1893. gmp_div_r(|resource n, resource d, [int round])
  1894. [gmp_div | Alias of gmp_div_q]
  1895. [gmp_divexact | Exact division of numbers, returns resource]
  1896. gmp_divexact(|resource n, resource d)
  1897. [gmp_fact | Factorial, returns resource]
  1898. gmp_fact(|int a)
  1899. [gmp_gcd | Calculate GCD, returns resource]
  1900. gmp_gcd(|resource a, resource b)
  1901. [gmp_gcdext | Calculate GCD and multipliers, returns array]
  1902. gmp_gcdext(|resource a, resource b)
  1903. [gmp_hamdist | Hamming distance, returns int]
  1904. gmp_hamdist(|resource a, resource b)
  1905. [gmp_init | Create GMP number, returns resource]
  1906. gmp_init(|mixed number)
  1907. [gmp_intval | Convert GMP number to integer, returns int]
  1908. gmp_intval(|resource gmpnumber)
  1909. [gmp_invert | Inverse by modulo, returns resource]
  1910. gmp_invert(|resource a, resource b)
  1911. [gmp_jacobi | Jacobi symbol, returns int]
  1912. gmp_jacobi(|resource a, resource p)
  1913. [gmp_legendre | Legendre symbol, returns int]
  1914. gmp_legendre(|resource a, resource p)
  1915. [gmp_mod | Modulo operation, returns resource]
  1916. gmp_mod(|resource n, resource d)
  1917. [gmp_mul | Multiply numbers, returns resource]
  1918. gmp_mul(|resource a, resource b)
  1919. [gmp_neg | Negate number, returns resource]
  1920. gmp_neg(|resource a)
  1921. [gmp_or | Logical OR, returns resource]
  1922. gmp_or(|resource a, resource b)
  1923. [gmp_perfect_square | Perfect square check, returns bool]
  1924. gmp_perfect_square(|resource a)
  1925. [gmp_popcount | Population count, returns int]
  1926. gmp_popcount(|resource a)
  1927. [gmp_pow | Raise number into power, returns resource]
  1928. gmp_pow(|resource base, int exp)
  1929. [gmp_powm | Raise number into power with modulo, returns resource]
  1930. gmp_powm(|resource base, resource exp, resource mod)
  1931. [gmp_prob_prime | Check if number is "probably prime", returns int]
  1932. gmp_prob_prime(|resource a, [int reps])
  1933. [gmp_random | Random number, returns resource]
  1934. gmp_random(|int limiter)
  1935. [gmp_scan0 | Scan for 0, returns int]
  1936. gmp_scan0(|resource a, int start)
  1937. [gmp_scan1 | Scan for 1, returns int]
  1938. gmp_scan1(|resource a, int start)
  1939. [gmp_setbit | Set bit, returns resource]
  1940. gmp_setbit(|resource &a, int index, [bool set_clear])
  1941. [gmp_sign | Sign of number, returns int]
  1942. gmp_sign(|resource a)
  1943. [gmp_sqrt | Square root, returns resource]
  1944. gmp_sqrt(|resource a)
  1945. [gmp_sqrtrm | Square root with remainder, returns array]
  1946. gmp_sqrtrm(|resource a)
  1947. [gmp_strval | Convert GMP number to string, returns string]
  1948. gmp_strval(|resource gmpnumber, [int base])
  1949. [gmp_sub | Subtract numbers, returns resource]
  1950. gmp_sub(|resource a, resource b)
  1951. [gmp_xor | Logical XOR, returns resource]
  1952. gmp_xor(|resource a, resource b)
  1953. ; -----------------------------------------------------------------------------
  1954. ; HTTP - HTTP functions
  1955. ; -----------------------------------------------------------------------------
  1956. [header | Send a raw HTTP header, returns int]
  1957. header(|string string, [bool replace], [int http_response_code])
  1958. [headers_list | Returns a list of response headers sent (or ready to send), returns array]
  1959. headers_list()|
  1960. [headers_sent | Checks if or where headers have been sent, returns bool]
  1961. headers_sent(|[string &file], [int &line])
  1962. [setcookie | Send a cookie, returns bool]
  1963. setcookie(|string name, [string value], [int expire], [string path], [string domain], [int secure])
  1964. ; -----------------------------------------------------------------------------
  1965. ; Hyperwave - Hyperwave functions
  1966. ; -----------------------------------------------------------------------------
  1967. [hw_Array2Objrec | convert attributes from object array to object record, returns string]
  1968. hw_array2objrec(|array object_array)
  1969. [hw_changeobject | Changes attributes of an object (obsolete), returns void]
  1970. hw_changeobject(|int link, int objid, array attributes)
  1971. [hw_Children | object ids of children, returns array]
  1972. hw_children(|int connection, int objectID)
  1973. [hw_ChildrenObj | object records of children, returns array]
  1974. hw_childrenobj(|int connection, int objectID)
  1975. [hw_Close | closes the Hyperwave connection, returns int]
  1976. hw_close(|int connection)
  1977. [hw_Connect | opens a connection, returns int]
  1978. hw_connect(|string host, int port, string username, string password)
  1979. [hw_connection_info | Prints information about the connection to Hyperwave server, returns void]
  1980. hw_connection_info(|int link)
  1981. [hw_cp | Copies objects, returns int]
  1982. hw_cp(|int connection, array object_id_array, int destination_id)
  1983. [hw_Deleteobject | deletes object, returns int]
  1984. hw_deleteobject(|int connection, int object_to_delete)
  1985. [hw_DocByAnchor | object id object belonging to anchor, returns int]
  1986. hw_docbyanchor(|int connection, int anchorID)
  1987. [hw_DocByAnchorObj | object record object belonging to anchor, returns string]
  1988. hw_docbyanchorobj(|int connection, int anchorID)
  1989. [hw_Document_Attributes | object record of hw_document, returns string]
  1990. hw_document_attributes(|int hw_document)
  1991. [hw_Document_BodyTag | body tag of hw_document, returns string]
  1992. hw_document_bodytag(|int hw_document)
  1993. [hw_Document_Content | returns content of hw_document, returns string]
  1994. hw_document_content(|int hw_document)
  1995. [hw_Document_SetContent | sets/replaces content of hw_document, returns string]
  1996. hw_document_setcontent(|int hw_document, string content)
  1997. [hw_Document_Size | size of hw_document, returns int]
  1998. hw_document_size(|int hw_document)
  1999. [hw_dummy | Hyperwave dummy function, returns string]
  2000. hw_dummy(|int link, int id, int msgid)
  2001. [hw_EditText | retrieve text document, returns int]
  2002. hw_edittext(|int connection, int hw_document)
  2003. [hw_Error | error number, returns int]
  2004. hw_error(|int connection)
  2005. [hw_ErrorMsg | returns error message, returns string]
  2006. hw_errormsg(|int connection)
  2007. [hw_Free_Document | frees hw_document, returns int]
  2008. hw_free_document(|int hw_document)
  2009. [hw_GetAnchors | object ids of anchors of document, returns array]
  2010. hw_getanchors(|int connection, int objectID)
  2011. [hw_GetAnchorsObj | object records of anchors of document, returns array]
  2012. hw_getanchorsobj(|int connection, int objectID)
  2013. [hw_GetAndLock | return bject record and lock object, returns string]
  2014. hw_getandlock(|int connection, int objectID)
  2015. [hw_GetChildColl | object ids of child collections, returns array]
  2016. hw_getchildcoll(|int connection, int objectID)
  2017. [hw_GetChildCollObj | object records of child collections, returns array]
  2018. hw_getchildcollobj(|int connection, int objectID)
  2019. [hw_GetChildDocColl | object ids of child documents of collection, returns array]
  2020. hw_getchilddoccoll(|int connection, int objectID)
  2021. [hw_GetChildDocCollObj | object records of child documents of collection, returns array]
  2022. hw_getchilddoccollobj(|int connection, int objectID)
  2023. [hw_GetObject | object record, returns array]
  2024. hw_getobject(|int connection, mixed objectID, string query)
  2025. [hw_GetObjectByQuery | search object, returns array]
  2026. hw_getobjectbyquery(|int connection, string query, int max_hits)
  2027. [hw_GetObjectByQueryColl | search object in collection, returns array]
  2028. hw_getobjectbyquerycoll(|int connection, int objectID, string query, int max_hits)
  2029. [hw_GetObjectByQueryCollObj | search object in collection, returns array]
  2030. hw_getobjectbyquerycollobj(|int connection, int objectID, string query, int max_hits)
  2031. [hw_GetObjectByQueryObj | search object, returns array]
  2032. hw_getobjectbyqueryobj(|int connection, string query, int max_hits)
  2033. [hw_GetParents | object ids of parents, returns array]
  2034. hw_getparents(|int connection, int objectID)
  2035. [hw_GetParentsObj | object records of parents, returns array]
  2036. hw_getparentsobj(|int connection, int objectID)
  2037. [hw_getrellink | Get link from source to dest relative to rootid, returns string]
  2038. hw_getrellink(|int link, int rootid, int sourceid, int destid)
  2039. [hw_GetRemote | Gets a remote document, returns int]
  2040. hw_getremote(|int connection, int objectID)
  2041. [hw_getremotechildren | Gets children of remote document, returns int]
  2042. hw_getremotechildren(|int connection, string object_record)
  2043. [hw_GetSrcByDestObj | Returns anchors pointing at object, returns array]
  2044. hw_getsrcbydestobj(|int connection, int objectID)
  2045. [hw_GetText | retrieve text document, returns int]
  2046. hw_gettext(|int connection, int objectID, [mixed rootID/prefix])
  2047. [hw_getusername | name of currently logged in user, returns string]
  2048. hw_getusername(|int connection)
  2049. [hw_Identify | identifies as user, returns int]
  2050. hw_identify(|string username, string password)
  2051. [hw_InCollections | check if object ids in collections, returns array]
  2052. hw_incollections(|int connection, array object_id_array, array collection_id_array, int return_collections)
  2053. [hw_Info | info about connection, returns string]
  2054. hw_info(|int connection)
  2055. [hw_InsColl | insert collection, returns int]
  2056. hw_inscoll(|int connection, int objectID, array object_array)
  2057. [hw_InsDoc | insert document, returns int]
  2058. hw_insdoc(|int connection, int parentID, string object_record, string text)
  2059. [hw_insertanchors | Inserts only anchors into text, returns string]
  2060. hw_insertanchors(|int hwdoc, array anchorecs, array dest, [array urlprefixes])
  2061. [hw_InsertDocument | upload any document, returns int]
  2062. hw_insertdocument(|int connection, int parent_id, int hw_document)
  2063. [hw_InsertObject | inserts an object record, returns int]
  2064. hw_insertobject(|int connection, string object_rec, string parameter)
  2065. [hw_mapid | Maps global id on virtual local id, returns int]
  2066. hw_mapid(|int connection, int server_id, int object_id)
  2067. [hw_Modifyobject | modifies object record, returns int]
  2068. hw_modifyobject(|int connection, int object_to_change, array remove, array add, int mode)
  2069. [hw_mv | Moves objects, returns int]
  2070. hw_mv(|int connection, array object_id_array, int source_id, int destination_id)
  2071. [hw_New_Document | create new document, returns int]
  2072. hw_new_document(|string object_record, string document_data, int document_size)
  2073. [hw_objrec2array | Convert attributes from object record to object array, returns array]
  2074. hw_objrec2array(|string object_record, [array format])
  2075. [hw_Output_Document | prints hw_document, returns int]
  2076. hw_output_document(|int hw_document)
  2077. [hw_pConnect | make a persistent database connection, returns int]
  2078. hw_pconnect(|string host, int port, string username, string password)
  2079. [hw_PipeDocument | retrieve any document, returns int]
  2080. hw_pipedocument(|int connection, int objectID)
  2081. [hw_Root | root object id, returns int]
  2082. hw_root(| )
  2083. [hw_setlinkroot | Set the id to which links are calculated, returns void]
  2084. hw_setlinkroot(|int link, int rootid)
  2085. [hw_stat | Returns status string, returns string]
  2086. hw_stat(|int link)
  2087. [hw_Unlock | unlock object, returns int]
  2088. hw_unlock(|int connection, int objectID)
  2089. [hw_Who | List of currently logged in users, returns int]
  2090. hw_who(|int connection)
  2091. ; -----------------------------------------------------------------------------
  2092. ; Hyperwave API - Hyperwave API functions
  2093. ; -----------------------------------------------------------------------------
  2094. [hw_api_attribute->key | Returns key of the attribute, returns string]
  2095. key(|void )
  2096. [hw_api_attribute->langdepvalue | Returns value for a given language, returns string]
  2097. langdepvalue(|string language)
  2098. [hw_api_attribute->value | Returns value of the attribute, returns string]
  2099. value(|void )
  2100. [hw_api_attribute->values | Returns all values of the attribute, returns array]
  2101. values(|void )
  2102. [hw_api_attribute | Creates instance of class hw_api_attribute, returns object]
  2103. attribute(|[string name], [string value])
  2104. [hw_api->checkin | Checks in an object, returns object]
  2105. checkin(|array parameter)
  2106. [hw_api->checkout | Checks out an object, returns object]
  2107. checkout(|array parameter)
  2108. [hw_api->children | Returns children of an object, returns array]
  2109. children(|array parameter)
  2110. [hw_api_content->mimetype | Returns mimetype, returns string]
  2111. mimetype(|void )
  2112. [hw_api_content->read | Read content, returns string]
  2113. read(|string buffer, integer len)
  2114. [hw_api->content | Returns content of an object, returns object]
  2115. content(|array parameter)
  2116. [hw_api->copy | Copies physically, returns object]
  2117. copy(|array parameter)
  2118. [hw_api->dbstat | Returns statistics about database server, returns object]
  2119. dbstat(|array parameter)
  2120. [hw_api->dcstat | Returns statistics about document cache server, returns object]
  2121. dcstat(|array parameter)
  2122. [hw_api->dstanchors | Returns a list of all destination anchors, returns object]
  2123. dstanchors(|array parameter)
  2124. [hw_api->dstofsrcanchors | Returns destination of a source anchor, returns object]
  2125. dstofsrcanchors(|array parameter)
  2126. [hw_api_error->count | Returns number of reasons, returns int]
  2127. count(|void )
  2128. [hw_api_error->reason | Returns reason of error, returns object]
  2129. reason(|void )
  2130. [hw_api->find | Search for objects, returns array]
  2131. find(|array parameter)
  2132. [hw_api->ftstat | Returns statistics about fulltext server, returns object]
  2133. ftstat(|array parameter)
  2134. [hwapi_hgcsp | Returns object of class hw_api, returns object]
  2135. hwapi_hgcsp(|string hostname, [int port])
  2136. [hw_api->hwstat | Returns statistics about Hyperwave server, returns object]
  2137. hwstat(|array parameter)
  2138. [hw_api->identify | Log into Hyperwave Server, returns object]
  2139. identify(|array parameter)
  2140. [hw_api->info | Returns information about server configuration, returns object]
  2141. info(|array parameter)
  2142. [hw_api->insert | Inserts a new object, returns object]
  2143. insert(|array parameter)
  2144. [hw_api->insertanchor | Inserts a new object of type anchor, returns object]
  2145. insertanchor(|array parameter)
  2146. [hw_api->insertcollection | Inserts a new object of type collection, returns object]
  2147. insertcollection(|array parameter)
  2148. [hw_api->insertdocument | Inserts a new object of type document, returns object]
  2149. insertdocument(|array parameter)
  2150. [hw_api->link | Creates a link to an object, returns object]
  2151. link(|array parameter)
  2152. [hw_api->lock | Locks an object, returns object]
  2153. lock(|array parameter)
  2154. [hw_api->move | Moves object between collections, returns object]
  2155. move(|array parameter)
  2156. [hw_api_content | Create new instance of class hw_api_content, returns string]
  2157. content(|string content, string mimetype)
  2158. [hw_api_object->assign | Clones object, returns object]
  2159. assign(|array parameter)
  2160. [hw_api_object->attreditable | Checks whether an attribute is editable, returns bool]
  2161. attreditable(|array parameter)
  2162. [hw_api_object->count | Returns number of attributes, returns int]
  2163. count(|array parameter)
  2164. [hw_api_object->insert | Inserts new attribute, returns bool]
  2165. insert(|object attribute)
  2166. [hw_api_object | Creates a new instance of class hw_api_object, returns object]
  2167. hw_api_object(|array parameter)
  2168. [hw_api_object->remove | Removes attribute, returns bool]
  2169. remove(|string name)
  2170. [hw_api_object->title | Returns the title attribute, returns string]
  2171. title(|array parameter)
  2172. [hw_api_object->value | Returns value of attribute, returns string]
  2173. value(|string name)
  2174. [hw_api->object | Retrieve attribute information, returns object]
  2175. hw_api->object(|array parameter)
  2176. [hw_api->objectbyanchor | Returns the object an anchor belongs to, returns object]
  2177. objectbyanchor(|array parameter)
  2178. [hw_api->parents | Returns parents of an object, returns array]
  2179. parents(|array parameter)
  2180. [hw_api_reason->description | Returns description of reason, returns string]
  2181. description(|void )
  2182. [hw_api_reason->type | Returns type of reason, returns object]
  2183. type(|void )
  2184. [hw_api->remove | Delete an object, returns object]
  2185. remove(|array parameter)
  2186. [hw_api->replace | Replaces an object, returns object]
  2187. replace(|array parameter)
  2188. [hw_api->setcommitedversion | Commits version other than last version, returns object]
  2189. setcommitedversion(|array parameter)
  2190. [hw_api->srcanchors | Returns a list of all source anchors, returns object]
  2191. srcanchors(|array parameter)
  2192. [hw_api->srcsofdst | Returns source of a destination object, returns object]
  2193. srcsofdst(|array parameter)
  2194. [hw_api->unlock | Unlocks a locked object, returns object]
  2195. unlock(|array parameter)
  2196. [hw_api->user | Returns the own user object, returns object]
  2197. user(|array parameter)
  2198. [hw_api->userlist | Returns a list of all logged in users, returns object]
  2199. userlist(|array parameter)
  2200. ; -----------------------------------------------------------------------------
  2201. ; iconv - iconv functions
  2202. ; -----------------------------------------------------------------------------
  2203. [iconv_get_encoding | Get current setting for character encoding conversion, returns array]
  2204. iconv_get_encoding(|[string type])
  2205. [iconv_mime_decode | Decodes a mime header field, returns string]
  2206. iconv_mime_decode(|string encoded_string, [string charset])
  2207. [iconv_mime_encode | Composes a mime header field with field_name and field_value in a specified scheme, returns string]
  2208. iconv_mime_encode(|string field_name, string field_value, [array preference])
  2209. [iconv_set_encoding | Set current setting for character encoding conversion, returns bool]
  2210. iconv_set_encoding(|string type, string charset)
  2211. [iconv_strlen | Returns the character count of string, returns int]
  2212. iconv_strlen(|string str, [string charset])
  2213. [iconv_strpos | Finds position of first occurrence of a needle within a haystack., returns int]
  2214. iconv_strpos(|string haystack, string needle, int offset, [string charset])
  2215. [iconv_strrpos | Finds position of last occurrence of needle within part of haystack beginning with offset, returns string]
  2216. iconv_strrpos(|string haystack, string needle, [string charset])
  2217. [iconv_substr | Returns specified part of a string, returns string]
  2218. iconv_substr(|string str, int offset, [int length], [string charset])
  2219. [iconv | Convert string to requested character encoding, returns string]
  2220. iconv(|string in_charset, string out_charset, string str)
  2221. [ob_iconv_handler | Convert character encoding as output buffer handler, returns array]
  2222. ob_iconv_handler(|string contents, int status)
  2223. ; -----------------------------------------------------------------------------
  2224. ; Image - Image functions
  2225. ; -----------------------------------------------------------------------------
  2226. [exif_imagetype | Determine the type of an image, returns int]
  2227. exif_imagetype(|string filename)
  2228. [exif_read_data | Reads the EXIF headers from JPEG or TIFF. This way you can read meta data generated by digital cameras., returns array]
  2229. exif_read_data(|string filename, [string sections], [bool arrays], [bool thumbnail])
  2230. [exif_thumbnail | Retrieve the embedded thumbnail of a TIFF or JPEG image, returns string]
  2231. exif_thumbnail(|string filename, [int &width], [int &height], [int &imagetype])
  2232. [gd_info | Retrieve information about the currently installed GD library, returns array]
  2233. gd_info()|
  2234. [getimagesize | Get the size of an image, returns array]
  2235. getimagesize(|string filename, [array imageinfo])
  2236. [image_type_to_mime_type | Get Mime-Type for image-type returned by getimagesize, exif_read_data, exif_thumbnail, exif_imagetype, returns string]
  2237. image_type_to_mime_type(|int imagetype)
  2238. [image2wbmp | Output image to browser or file, returns int]
  2239. image2wbmp(|resource image, [string filename], [int threshold])
  2240. [imagealphablending | Set the blending mode for an image, returns bool]
  2241. imagealphablending(|resource image, bool blendmode)
  2242. [imageantialias | Should antialias functions be used or not, returns bool]
  2243. imageantialias(|resource im, bool on)
  2244. [imagearc | Draw a partial ellipse, returns int]
  2245. imagearc(|resource image, int cx, int cy, int w, int h, int s, int e, int color)
  2246. [imagechar | Draw a character horizontally, returns int]
  2247. imagechar(|resource image, int font, int x, int y, string c, int color)
  2248. [imagecharup | Draw a character vertically, returns int]
  2249. imagecharup(|resource image, int font, int x, int y, string c, int color)
  2250. [imagecolorallocate | Allocate a color for an image, returns int]
  2251. imagecolorallocate(|resource image, int red, int green, int blue)
  2252. [imagecolorallocatealpha | Allocate a color for an image, returns int]
  2253. imagecolorallocatealpha(|resource image, int red, int green, int blue, int alpha)
  2254. [imagecolorat | Get the index of the color of a pixel, returns int]
  2255. imagecolorat(|resource image, int x, int y)
  2256. [imagecolorclosest | Get the index of the closest color to the specified color, returns int]
  2257. imagecolorclosest(|resource image, int red, int green, int blue)
  2258. [imagecolorclosestalpha | Get the index of the closest color to the specified color + alpha, returns int]
  2259. imagecolorclosestalpha(|resource image, int red, int green, int blue, int alpha)
  2260. [imagecolorclosesthwb | Get the index of the color which has the hue, white and blackness nearest to the given color, returns int]
  2261. imagecolorclosesthwb(|resource image, int red, int green, int blue)
  2262. [imagecolordeallocate | De-allocate a color for an image, returns int]
  2263. imagecolordeallocate(|resource image, int color)
  2264. [imagecolorexact | Get the index of the specified color, returns int]
  2265. imagecolorexact(|resource image, int red, int green, int blue)
  2266. [imagecolorexactalpha | Get the index of the specified color + alpha, returns int]
  2267. imagecolorexactalpha(|resource image, int red, int green, int blue, int alpha)
  2268. [imagecolormatch | Makes the colors of the palette version of an image more closely match the true color version, returns bool]
  2269. imagecolormatch(|resource image1, resource image2)
  2270. [imagecolorresolve | Get the index of the specified color or its closest possible alternative, returns int]
  2271. imagecolorresolve(|resource image, int red, int green, int blue)
  2272. [imagecolorresolvealpha | Get the index of the specified color + alpha or its closest possible alternative, returns int]
  2273. imagecolorresolvealpha(|resource image, int red, int green, int blue, int alpha)
  2274. [imagecolorset | Set the color for the specified palette index, returns bool]
  2275. imagecolorset(|resource image, int index, int red, int green, int blue)
  2276. [imagecolorsforindex | Get the colors for an index, returns array]
  2277. imagecolorsforindex(|resource image, int index)
  2278. [imagecolorstotal | Find out the number of colors in an image's palette, returns int]
  2279. imagecolorstotal(|resource image)
  2280. [imagecolortransparent | Define a color as transparent, returns int]
  2281. imagecolortransparent(|resource image, [int color])
  2282. [imagecopy | Copy part of an image, returns int]
  2283. imagecopy(|resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h)
  2284. [imagecopymerge | Copy and merge part of an image, returns int]
  2285. imagecopymerge(|resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct)
  2286. [imagecopymergegray | Copy and merge part of an image with gray scale, returns int]
  2287. imagecopymergegray(|resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct)
  2288. [imagecopyresampled | Copy and resize part of an image with resampling, returns bool]
  2289. imagecopyresampled(|resource dst_im, resource src_im, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH)
  2290. [imagecopyresized | Copy and resize part of an image, returns int]
  2291. imagecopyresized(|resource dst_im, resource src_im, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH)
  2292. [imagecreate | Create a new palette based image, returns resource]
  2293. imagecreate(|int x_size, int y_size)
  2294. [imagecreatefromgd2 | Create a new image from GD2 file or URL, returns resource]
  2295. imagecreatefromgd2(|string filename)
  2296. [imagecreatefromgd2part | Create a new image from a given part of GD2 file or URL, returns resource]
  2297. imagecreatefromgd2part(|string filename, int srcX, int srcY, int width, int height)
  2298. [imagecreatefromgd | Create a new image from GD file or URL, returns resource]
  2299. imagecreatefromgd(|string filename)
  2300. [imagecreatefromgif | Create a new image from file or URL, returns resource]
  2301. imagecreatefromgif(|string filename)
  2302. [imagecreatefromjpeg | Create a new image from file or URL, returns resource]
  2303. imagecreatefromjpeg(|string filename)
  2304. [imagecreatefrompng | Create a new image from file or URL, returns resource]
  2305. imagecreatefrompng(|string filename)
  2306. [imagecreatefromstring | Create a new image from the image stream in the string, returns resource]
  2307. imagecreatefromstring(|string image)
  2308. [imagecreatefromwbmp | Create a new image from file or URL, returns resource]
  2309. imagecreatefromwbmp(|string filename)
  2310. [imagecreatefromxbm | Create a new image from file or URL, returns resource]
  2311. imagecreatefromxbm(|string filename)
  2312. [imagecreatefromxpm | Create a new image from file or URL, returns resource]
  2313. imagecreatefromxpm(|string filename)
  2314. [imagecreatetruecolor | Create a new true color image, returns resource]
  2315. imagecreatetruecolor(|int x_size, int y_size)
  2316. [imagedashedline | Draw a dashed line, returns int]
  2317. imagedashedline(|resource image, int x1, int y1, int x2, int y2, int color)
  2318. [imagedestroy | Destroy an image, returns int]
  2319. imagedestroy(|resource image)
  2320. [imageellipse | Draw an ellipse, returns int]
  2321. imageellipse(|resource image, int cx, int cy, int w, int h, int color)
  2322. [imagefill | Flood fill, returns int]
  2323. imagefill(|resource image, int x, int y, int color)
  2324. [imagefilledarc | Draw a partial ellipse and fill it, returns bool]
  2325. imagefilledarc(|resource image, int cx, int cy, int w, int h, int s, int e, int color, int style)
  2326. [imagefilledellipse | Draw a filled ellipse, returns bool]
  2327. imagefilledellipse(|resource image, int cx, int cy, int w, int h, int color)
  2328. [imagefilledpolygon | Draw a filled polygon, returns int]
  2329. imagefilledpolygon(|resource image, array points, int num_points, int color)
  2330. [imagefilledrectangle | Draw a filled rectangle, returns int]
  2331. imagefilledrectangle(|resource image, int x1, int y1, int x2, int y2, int color)
  2332. [imagefilltoborder | Flood fill to specific color, returns int]
  2333. imagefilltoborder(|resource image, int x, int y, int border, int color)
  2334. [imagefontheight | Get font height, returns int]
  2335. imagefontheight(|int font)
  2336. [imagefontwidth | Get font width, returns int]
  2337. imagefontwidth(|int font)
  2338. [imageftbbox | Give the bounding box of a text using fonts via freetype2, returns array]
  2339. imageftbbox(|int size, int angle, string font_file, string text, [array extrainfo])
  2340. [imagefttext | Write text to the image using fonts using FreeType 2, returns array]
  2341. imagefttext(|resource image, int size, int angle, int x, int y, int col, string font_file, string text, [array extrainfo])
  2342. [imagegammacorrect | Apply a gamma correction to a GD image, returns int]
  2343. imagegammacorrect(|resource image, float inputgamma, float outputgamma)
  2344. [imagegd2 | Output GD2 image, returns int]
  2345. imagegd2(|resource image, [string filename], [int chunk_size], [int type])
  2346. [imagegd | Output GD image to browser or file, returns int]
  2347. imagegd(|resource image, [string filename])
  2348. [imagegif | Output image to browser or file, returns int]
  2349. imagegif(|resource image, [string filename])
  2350. [imageinterlace | Enable or disable interlace, returns int]
  2351. imageinterlace(|resource image, [int interlace])
  2352. [imageistruecolor | Finds whether an image is a truecolor image., returns bool]
  2353. imageistruecolor(|resource image)
  2354. [imagejpeg | Output image to browser or file, returns int]
  2355. imagejpeg(|resource image, [string filename], [int quality])
  2356. [imageline | Draw a line, returns int]
  2357. imageline(|resource image, int x1, int y1, int x2, int y2, int color)
  2358. [imageloadfont | Load a new font, returns int]
  2359. imageloadfont(|string file)
  2360. [imagepalettecopy | Copy the palette from one image to another, returns int]
  2361. imagepalettecopy(|resource destination, resource source)
  2362. [imagepng | Output a PNG image to either the browser or a file, returns int]
  2363. imagepng(|resource image, [string filename])
  2364. [imagepolygon | Draw a polygon, returns int]
  2365. imagepolygon(|resource image, array points, int num_points, int color)
  2366. [imagepsbbox | Give the bounding box of a text rectangle using PostScript Type1 fonts, returns array]
  2367. imagepsbbox(|string text, int font, int size, [int space], [int tightness], [float angle])
  2368. [imagepscopyfont | Make a copy of an already loaded font for further modification, returns int]
  2369. imagepscopyfont(|int fontindex)
  2370. [imagepsencodefont | Change the character encoding vector of a font, returns int]
  2371. imagepsencodefont(|int font_index, string encodingfile)
  2372. [imagepsextendfont | Extend or condense a font, returns bool]
  2373. imagepsextendfont(|int font_index, float extend)
  2374. [imagepsfreefont | Free memory used by a PostScript Type 1 font, returns void]
  2375. imagepsfreefont(|int fontindex)
  2376. [imagepsloadfont | Load a PostScript Type 1 font from file, returns int]
  2377. imagepsloadfont(|string filename)
  2378. [imagepsslantfont | Slant a font, returns bool]
  2379. imagepsslantfont(|int font_index, float slant)
  2380. [imagepstext | To draw a text string over an image using PostScript Type1 fonts, returns array]
  2381. imagepstext(|resource image, string text, int font, int size, int foreground, int background, int x, int y, [int space], [int tightness], [float angle], [int antialias_steps])
  2382. [imagerectangle | Draw a rectangle, returns int]
  2383. imagerectangle(|resource image, int x1, int y1, int x2, int y2, int col)
  2384. [imagerotate | Rotate an image with a given angle, returns resource]
  2385. imagerotate(|resource src_im, float angle, int bgd_color)
  2386. [imagesavealpha | Set the flag to save full alpha channel information (as opposed to single-color transparency) when saving PNG images., returns bool]
  2387. imagesavealpha(|resource image, bool saveflag)
  2388. [imagesetbrush | Set the brush image for line drawing, returns int]
  2389. imagesetbrush(|resource image, resource brush)
  2390. [imagesetpixel | Set a single pixel, returns int]
  2391. imagesetpixel(|resource image, int x, int y, int color)
  2392. [imagesetstyle | Set the style for line drawing, returns bool]
  2393. imagesetstyle(|resource image, array style)
  2394. [imagesetthickness | Set the thickness for line drawing, returns bool]
  2395. imagesetthickness(|resource image, int thickness)
  2396. [imagesettile | Set the tile image for filling, returns int]
  2397. imagesettile(|resource image, resource tile)
  2398. [imagestring | Draw a string horizontally, returns int]
  2399. imagestring(|resource image, int font, int x, int y, string s, int col)
  2400. [imagestringup | Draw a string vertically, returns int]
  2401. imagestringup(|resource image, int font, int x, int y, string s, int col)
  2402. [imagesx | Get image width, returns int]
  2403. imagesx(|resource image)
  2404. [imagesy | Get image height, returns int]
  2405. imagesy(|resource image)
  2406. [imagetruecolortopalette | Convert a true color image to a palette image, returns void]
  2407. imagetruecolortopalette(|resource image, bool dither, int ncolors)
  2408. [imagettfbbox | Give the bounding box of a text using TrueType fonts, returns array]
  2409. imagettfbbox(|int size, int angle, string fontfile, string text)
  2410. [imagettftext | Write text to the image using TrueType fonts, returns array]
  2411. imagettftext(|resource image, int size, int angle, int x, int y, int color, string fontfile, string text)
  2412. [imagetypes | Return the image types supported by this PHP build, returns int]
  2413. imagetypes()|
  2414. [imagewbmp | Output image to browser or file, returns int]
  2415. imagewbmp(|resource image, [string filename], [int foreground])
  2416. [iptcembed | Embed binary IPTC data into a JPEG image, returns array]
  2417. iptcembed(|string iptcdata, string jpeg_file_name, [int spool])
  2418. [iptcparse | Parse a binary IPTC http://www.iptc.org/ block into single tags., returns array]
  2419. iptcparse(|string iptcblock)
  2420. [jpeg2wbmp | Convert JPEG image file to WBMP image file, returns int]
  2421. jpeg2wbmp(|string jpegname, string wbmpname, int d_height, int d_width, int threshold)
  2422. [png2wbmp | Convert PNG image file to WBMP image file, returns int]
  2423. png2wbmp(|string pngname, string wbmpname, int d_height, int d_width, int threshold)
  2424. [read_exif_data | Alias of exif_read_data]
  2425. ; -----------------------------------------------------------------------------
  2426. ; IMAP - IMAP, POP3 and NNTP functions
  2427. ; -----------------------------------------------------------------------------
  2428. [imap_8bit | Convert an 8bit string to a quoted-printable string, returns string]
  2429. imap_8bit(|string string)
  2430. [imap_alerts | This function returns all IMAP alert messages (if any) that have occurred during this page request or since the alert stack was reset, returns array]
  2431. imap_alerts()|
  2432. [imap_append | Append a string message to a specified mailbox, returns bool]
  2433. imap_append(|resource imap_stream, string mbox, string message, [string options])
  2434. [imap_base64 | Decode BASE64 encoded text, returns string]
  2435. imap_base64(|string text)
  2436. [imap_binary | Convert an 8bit string to a base64 string, returns string]
  2437. imap_binary(|string string)
  2438. [imap_body | Read the message body, returns string]
  2439. imap_body(|resource imap_stream, int msg_number, [int options])
  2440. [imap_bodystruct | Read the structure of a specified body section of a specific message, returns object]
  2441. imap_bodystruct(|resource stream_id, int msg_no, int section)
  2442. [imap_check | Check current mailbox, returns object]
  2443. imap_check(|resource imap_stream)
  2444. [imap_clearflag_full | Clears flags on messages, returns bool]
  2445. imap_clearflag_full(|resource stream, string sequence, string flag, string options)
  2446. [imap_close | Close an IMAP stream, returns bool]
  2447. imap_close(|resource imap_stream, [int flag])
  2448. [imap_createmailbox | Create a new mailbox, returns bool]
  2449. imap_createmailbox(|resource imap_stream, string mbox)
  2450. [imap_delete | Mark a message for deletion from current mailbox, returns bool]
  2451. imap_delete(|int imap_stream, int msg_number, [int options])
  2452. [imap_deletemailbox | Delete a mailbox, returns bool]
  2453. imap_deletemailbox(|resource imap_stream, string mbox)
  2454. [imap_errors | This function returns all of the IMAP errors (if any) that have occurred during this page request or since the error stack was reset., returns array]
  2455. imap_errors()|
  2456. [imap_expunge | Delete all messages marked for deletion, returns bool]
  2457. imap_expunge(|resource imap_stream)
  2458. [imap_fetch_overview | Read an overview of the information in the headers of the given message, returns array]
  2459. imap_fetch_overview(|resource imap_stream, string sequence, [int options])
  2460. [imap_fetchbody | Fetch a particular section of the body of the message, returns string]
  2461. imap_fetchbody(|resource imap_stream, int msg_number, string part_number, [flags options])
  2462. [imap_fetchheader | Returns header for a message, returns string]
  2463. imap_fetchheader(|resource imap_stream, int msgno, int options)
  2464. [imap_fetchstructure | Read the structure of a particular message, returns object]
  2465. imap_fetchstructure(|resource imap_stream, int msg_number, [int options])
  2466. [imap_get_quota | Retrieve the quota level settings, and usage statics per mailbox, returns array]
  2467. imap_get_quota(|resource imap_stream, string quota_root)
  2468. [imap_get_quotaroot | Retrieve the quota settings per user, returns array]
  2469. imap_get_quotaroot(|resource imap_stream, string quota_root)
  2470. [imap_getacl | Gets the ACL for a given mailbox, returns array]
  2471. imap_getacl(|resource stream_id, string mailbox)
  2472. [imap_getmailboxes | Read the list of mailboxes, returning detailed information on each one, returns array]
  2473. imap_getmailboxes(|resource imap_stream, string ref, string pattern)
  2474. [imap_getsubscribed | List all the subscribed mailboxes, returns array]
  2475. imap_getsubscribed(|resource imap_stream, string ref, string pattern)
  2476. [imap_header | Alias of imap_headerinfo]
  2477. [imap_headerinfo | Read the header of the message, returns object]
  2478. imap_headerinfo(|resource imap_stream, int msg_number, [int fromlength], [int subjectlength], [string defaulthost])
  2479. [imap_headers | Returns headers for all messages in a mailbox, returns array]
  2480. imap_headers(|resource imap_stream)
  2481. [imap_last_error | This function returns the last IMAP error (if any) that occurred during this page request, returns string]
  2482. imap_last_error()|
  2483. [imap_list | Read the list of mailboxes, returns array]
  2484. imap_list(|resource imap_stream, string ref, string pattern)
  2485. [imap_listmailbox | Alias of imap_list]
  2486. [imap_listscan | Read the list of mailboxes, takes a string to search for in the text of the mailbox, returns array]
  2487. imap_listscan(|resource imap_stream, string ref, string pattern, string content)
  2488. [imap_listsubscribed | Alias of imap_lsub]
  2489. [imap_lsub | List all the subscribed mailboxes, returns array]
  2490. imap_lsub(|resource imap_stream, string ref, string pattern)
  2491. [imap_mail_compose | Create a MIME message based on given envelope and body sections, returns string]
  2492. imap_mail_compose(|array envelope, array body)
  2493. [imap_mail_copy | Copy specified messages to a mailbox, returns bool]
  2494. imap_mail_copy(|resource imap_stream, string msglist, string mbox, [int options])
  2495. [imap_mail_move | Move specified messages to a mailbox, returns bool]
  2496. imap_mail_move(|resource imap_stream, string msglist, string mbox, [int options])
  2497. [imap_mail | Send an email message, returns bool]
  2498. imap_mail(|string to, string subject, string message, [string additional_headers], [string cc], [string bcc], [string rpath])
  2499. [imap_mailboxmsginfo | Get information about the current mailbox, returns object]
  2500. imap_mailboxmsginfo(|resource imap_stream)
  2501. [imap_mime_header_decode | Decode MIME header elements, returns array]
  2502. imap_mime_header_decode(|string text)
  2503. [imap_msgno | This function returns the message sequence number for the given UID, returns int]
  2504. imap_msgno(|resource imap_stream, int uid)
  2505. [imap_num_msg | Gives the number of messages in the current mailbox, returns int]
  2506. imap_num_msg(|resource imap_stream)
  2507. [imap_num_recent | Gives the number of recent messages in current mailbox, returns int]
  2508. imap_num_recent(|resource imap_stream)
  2509. [imap_open | Open an IMAP stream to a mailbox, returns resource]
  2510. imap_open(|string mailbox, string username, string password, [int options])
  2511. [imap_ping | Check if the IMAP stream is still active, returns bool]
  2512. imap_ping(|resource imap_stream)
  2513. [imap_qprint | Convert a quoted-printable string to an 8 bit string, returns string]
  2514. imap_qprint(|string string)
  2515. [imap_renamemailbox | Rename an old mailbox to new mailbox, returns bool]
  2516. imap_renamemailbox(|resource imap_stream, string old_mbox, string new_mbox)
  2517. [imap_reopen | Reopen IMAP stream to new mailbox, returns bool]
  2518. imap_reopen(|resource imap_stream, string mailbox, [string options])
  2519. [imap_rfc822_parse_adrlist | Parses an address string, returns array]
  2520. imap_rfc822_parse_adrlist(|string address, string default_host)
  2521. [imap_rfc822_parse_headers | Parse mail headers from a string, returns object]
  2522. imap_rfc822_parse_headers(|string headers, [string defaulthost])
  2523. [imap_rfc822_write_address | Returns a properly formatted email address given the mailbox, host, and personal info., returns string]
  2524. imap_rfc822_write_address(|string mailbox, string host, string personal)
  2525. [imap_scanmailbox | Alias of imap_listscan]
  2526. [imap_search | This function returns an array of messages matching the given search criteria, returns array]
  2527. imap_search(|resource imap_stream, string criteria, int options)
  2528. [imap_set_quota | Sets a quota for a given mailbox, returns bool]
  2529. imap_set_quota(|resource imap_stream, string quota_root, int quota_limit)
  2530. [imap_setacl | Sets the ACL for a giving mailbox, returns bool]
  2531. imap_setacl(|resource stream_id, string mailbox, string id, string rights)
  2532. [imap_setflag_full | Sets flags on messages, returns bool]
  2533. imap_setflag_full(|resource stream, string sequence, string flag, string options)
  2534. [imap_sort | Sort an array of message headers, returns array]
  2535. imap_sort(|resource stream, int criteria, int reverse, [int options], [string search_criteria])
  2536. [imap_status | This function returns status information on a mailbox other than the current one, returns object]
  2537. imap_status(|resource imap_stream, string mailbox, int options)
  2538. [imap_subscribe | Subscribe to a mailbox, returns bool]
  2539. imap_subscribe(|resource imap_stream, string mbox)
  2540. [imap_thread | Return threaded by REFERENCES tree, returns array]
  2541. imap_thread(|resource stream_id, [int options])
  2542. [imap_timeout | Set or fetch imap timeout, returns mixed]
  2543. imap_timeout(|int timeout_type, [int timeout])
  2544. [imap_uid | This function returns the UID for the given message sequence number, returns int]
  2545. imap_uid(|resource imap_stream, int msgno)
  2546. [imap_undelete | Unmark the message which is marked deleted, returns bool]
  2547. imap_undelete(|resource imap_stream, int msg_number)
  2548. [imap_unsubscribe | Unsubscribe from a mailbox, returns bool]
  2549. imap_unsubscribe(|string imap_stream, string mbox)
  2550. [imap_utf7_decode | Decodes a modified UTF-7 encoded string., returns string]
  2551. imap_utf7_decode(|string text)
  2552. [imap_utf7_encode | Converts ISO-8859-1 string to modified UTF-7 text., returns string]
  2553. imap_utf7_encode(|string data)
  2554. [imap_utf8 | Converts MIME-encoded text to UTF-8, returns string]
  2555. imap_utf8(|string mime_encoded_text)
  2556. ; -----------------------------------------------------------------------------
  2557. ; Informix - Informix functions
  2558. ; -----------------------------------------------------------------------------
  2559. [ifx_affected_rows | Get number of rows affected by a query, returns int]
  2560. ifx_affected_rows(|int result_id)
  2561. [ifx_blobinfile_mode | Set the default blob mode for all select queries, returns void]
  2562. ifx_blobinfile_mode(|int mode)
  2563. [ifx_byteasvarchar | Set the default byte mode, returns void]
  2564. ifx_byteasvarchar(|int mode)
  2565. [ifx_close | Close Informix connection, returns int]
  2566. ifx_close(|[int link_identifier])
  2567. [ifx_connect | Open Informix server connection, returns int]
  2568. ifx_connect(|[string database], [string userid], [string password])
  2569. [ifx_copy_blob | Duplicates the given blob object, returns int]
  2570. ifx_copy_blob(|int bid)
  2571. [ifx_create_blob | Creates an blob object, returns int]
  2572. ifx_create_blob(|int type, int mode, string param)
  2573. [ifx_create_char | Creates an char object, returns int]
  2574. ifx_create_char(|string param)
  2575. [ifx_do | Execute a previously prepared SQL-statement, returns int]
  2576. ifx_do(|int result_id)
  2577. [ifx_error | Returns error code of last Informix call, returns string]
  2578. ifx_error()|
  2579. [ifx_errormsg | Returns error message of last Informix call, returns string]
  2580. ifx_errormsg(|[int errorcode])
  2581. [ifx_fetch_row | Get row as enumerated array, returns array]
  2582. ifx_fetch_row(|int result_id, [mixed position])
  2583. [ifx_fieldproperties | List of SQL fieldproperties, returns array]
  2584. ifx_fieldproperties(|int result_id)
  2585. [ifx_fieldtypes | List of Informix SQL fields, returns array]
  2586. ifx_fieldtypes(|int result_id)
  2587. [ifx_free_blob | Deletes the blob object, returns int]
  2588. ifx_free_blob(|int bid)
  2589. [ifx_free_char | Deletes the char object, returns int]
  2590. ifx_free_char(|int bid)
  2591. [ifx_free_result | Releases resources for the query, returns int]
  2592. ifx_free_result(|int result_id)
  2593. [ifx_get_blob | Return the content of a blob object, returns int]
  2594. ifx_get_blob(|int bid)
  2595. [ifx_get_char | Return the content of the char object, returns int]
  2596. ifx_get_char(|int bid)
  2597. [ifx_getsqlca | Get the contents of sqlca.sqlerrd[0..5] after a query, returns array]
  2598. ifx_getsqlca(|int result_id)
  2599. [ifx_htmltbl_result | Formats all rows of a query into a HTML table, returns int]
  2600. ifx_htmltbl_result(|int result_id, [string html_table_options])
  2601. [ifx_nullformat | Sets the default return value on a fetch row, returns void]
  2602. ifx_nullformat(|int mode)
  2603. [ifx_num_fields | Returns the number of columns in the query, returns int]
  2604. ifx_num_fields(|int result_id)
  2605. [ifx_num_rows | Count the rows already fetched from a query, returns int]
  2606. ifx_num_rows(|int result_id)
  2607. [ifx_pconnect | Open persistent Informix connection, returns int]
  2608. ifx_pconnect(|[string database], [string userid], [string password])
  2609. [ifx_prepare | Prepare an SQL-statement for execution, returns int]
  2610. ifx_prepare(|string query, int conn_id, [int cursor_def], mixed blobidarray)
  2611. [ifx_query | Send Informix query, returns int]
  2612. ifx_query(|string query, int link_identifier, [int cursor_type], [mixed blobidarray])
  2613. [ifx_textasvarchar | Set the default text mode, returns void]
  2614. ifx_textasvarchar(|int mode)
  2615. [ifx_update_blob | Updates the content of the blob object, returns bool]
  2616. ifx_update_blob(|int bid, string content)
  2617. [ifx_update_char | Updates the content of the char object, returns int]
  2618. ifx_update_char(|int bid, string content)
  2619. [ifxus_close_slob | Deletes the slob object, returns int]
  2620. ifxus_close_slob(|int bid)
  2621. [ifxus_create_slob | Creates an slob object and opens it, returns int]
  2622. ifxus_create_slob(|int mode)
  2623. [ifxus_free_slob | Deletes the slob object, returns int]
  2624. ifxus_free_slob(|int bid)
  2625. [ifxus_open_slob | Opens an slob object, returns int]
  2626. ifxus_open_slob(|long bid, int mode)
  2627. [ifxus_read_slob | Reads nbytes of the slob object, returns int]
  2628. ifxus_read_slob(|long bid, long nbytes)
  2629. [ifxus_seek_slob | Sets the current file or seek position, returns int]
  2630. ifxus_seek_slob(|long bid, int mode, long offset)
  2631. [ifxus_tell_slob | Returns the current file or seek position, returns int]
  2632. ifxus_tell_slob(|long bid)
  2633. [ifxus_write_slob | Writes a string into the slob object, returns int]
  2634. ifxus_write_slob(|long bid, string content)
  2635. ; -----------------------------------------------------------------------------
  2636. ; InterBase - InterBase functions
  2637. ; -----------------------------------------------------------------------------
  2638. [ibase_add_user | Add a user to a security database (only for IB6 or later), returns bool]
  2639. ibase_add_user(|string server, string dba_user_name, string dba_user_password, string user_name, string password, [string first_name], [string middle_name], [string last_name])
  2640. [ibase_affected_rows | Return the number of rows that were affected by the previous query, returns int]
  2641. ibase_affected_rows(|resource link_identifier)
  2642. [ibase_blob_add | Add data into a newly created blob, returns bool]
  2643. ibase_blob_add(|resource blob_handle, string data)
  2644. [ibase_blob_cancel | Cancel creating blob, returns bool]
  2645. ibase_blob_cancel(|resource blob_handle)
  2646. [ibase_blob_close | Close blob, returns mixed]
  2647. ibase_blob_close(|resource blob_handle)
  2648. [ibase_blob_create | Create a new blob for adding data, returns resource]
  2649. ibase_blob_create(|[resource link_identifier])
  2650. [ibase_blob_echo | Output blob contents to browser, returns bool]
  2651. ibase_blob_echo(|string blob_id)
  2652. [ibase_blob_get | Get len bytes data from open blob, returns string]
  2653. ibase_blob_get(|resource blob_handle, int len)
  2654. [ibase_blob_import | Create blob, copy file in it, and close it, returns string]
  2655. ibase_blob_import(|[resource link_identifier], resource file_handle)
  2656. [ibase_blob_info | Return blob length and other useful info, returns array]
  2657. ibase_blob_info(|string blob_id)
  2658. [ibase_blob_open | Open blob for retrieving data parts, returns resource]
  2659. ibase_blob_open(|string blob_id)
  2660. [ibase_close | Close a connection to an InterBase database, returns bool]
  2661. ibase_close(|[resource connection_id])
  2662. [ibase_commit_ret | Commit a transaction without closing it, returns bool]
  2663. ibase_commit_ret(|[resource link_identifier])
  2664. [ibase_commit | Commit a transaction, returns bool]
  2665. ibase_commit(|[resource link_identifier])
  2666. [ibase_connect | Open a connection to an InterBase database, returns resource]
  2667. ibase_connect(|string database, [string username], [string password], [string charset], [int buffers], [int dialect], [string role])
  2668. [ibase_delete_user | Delete a user from a security database (only for IB6 or later), returns bool]
  2669. ibase_delete_user(|string server, string dba_user_name, string dba_user_password, string user_name)
  2670. [ibase_drop_db | Drops a database, returns bool]
  2671. ibase_drop_db(|resource connection)
  2672. [ibase_errcode | Return an error code, returns int]
  2673. ibase_errcode()|
  2674. [ibase_errmsg | Return error messages, returns string]
  2675. ibase_errmsg()|
  2676. [ibase_execute | Execute a previously prepared query, returns resource]
  2677. ibase_execute(|resource query, [int bind_args])
  2678. [ibase_fetch_assoc | Fetch a result row from a query as an associative array, returns array]
  2679. ibase_fetch_assoc(|resource result, [int fetch_flag])
  2680. [ibase_fetch_object | Get an object from a InterBase database, returns object]
  2681. ibase_fetch_object(|resource result_id, [int fetch_flag])
  2682. [ibase_fetch_row | Fetch a row from an InterBase database, returns array]
  2683. ibase_fetch_row(|resource result_identifier, [int fetch_flag])
  2684. [ibase_field_info | Get information about a field, returns array]
  2685. ibase_field_info(|resource result, int field_number)
  2686. [ibase_free_event_handler | Cancels a registered event handler, returns bool]
  2687. ibase_free_event_handler(|resource event)
  2688. [ibase_free_query | Free memory allocated by a prepared query, returns bool]
  2689. ibase_free_query(|resource query)
  2690. [ibase_free_result | Free a result set, returns bool]
  2691. ibase_free_result(|resource result_identifier)
  2692. [ibase_gen_id | Increments the named generator and returns its new value, returns int]
  2693. ibase_gen_id(|[resource link_identifier], [string generator], [int increment])
  2694. [ibase_modify_user | Modify a user to a security database (only for IB6 or later), returns bool]
  2695. ibase_modify_user(|string server, string dba_user_name, string dba_user_password, string user_name, string password, [string first_name], [string middle_name], [string last_name])
  2696. [ibase_name_result | Assigns a name to a result set, returns bool]
  2697. ibase_name_result(|resource result, string name)
  2698. [ibase_num_fields | Get the number of fields in a result set, returns int]
  2699. ibase_num_fields(|resource result_id)
  2700. [ibase_num_params | Return the number of parameters in a prepared query, returns int]
  2701. ibase_num_params(|resource query)
  2702. [ibase_param_info | Return information about a parameter in a prepared query, returns array]
  2703. ibase_param_info(|resource query, int param_number)
  2704. [ibase_pconnect | Open a persistent connection to an InterBase database, returns resource]
  2705. ibase_pconnect(|string database, [string username], [string password], [string charset], [int buffers], [int dialect], [string role])
  2706. [ibase_prepare | Prepare a query for later binding of parameter placeholders and execution, returns resource]
  2707. ibase_prepare(|[resource link_identifier], string query)
  2708. [ibase_query | Execute a query on an InterBase database, returns resource]
  2709. ibase_query(|[resource link_identifier], string query, [int bind_args])
  2710. [ibase_rollback_ret | Roll back a transaction without closing it, returns bool]
  2711. ibase_rollback_ret(|[resource link_identifier])
  2712. [ibase_rollback | Roll back a transaction, returns bool]
  2713. ibase_rollback(|[resource link_identifier])
  2714. [ibase_set_event_handler | Register a callback function to be called when events are posted, returns resource]
  2715. ibase_set_event_handler(|[resource connection], callback event_handler, string event_name1, [string event_name2], [string ...])
  2716. [ibase_timefmt | Sets the format of timestamp, date and time type columns returned from queries, returns int]
  2717. ibase_timefmt(|string format, [int columntype])
  2718. [ibase_trans | Begin a transaction, returns resource]
  2719. ibase_trans(|[int trans_args], [resource link_identifier])
  2720. [ibase_wait_event | Wait for an event to be posted by the database, returns string]
  2721. ibase_wait_event(|[resource connection], string event_name1, [string event_name2], [string ...])
  2722. ; -----------------------------------------------------------------------------
  2723. ; Ingres II - Ingres II functions
  2724. ; -----------------------------------------------------------------------------
  2725. [ingres_autocommit | Switch autocommit on or off, returns bool]
  2726. ingres_autocommit(|[resource link])
  2727. [ingres_close | Close an Ingres II database connection, returns bool]
  2728. ingres_close(|[resource link])
  2729. [ingres_commit | Commit a transaction, returns bool]
  2730. ingres_commit(|[resource link])
  2731. [ingres_connect | Open a connection to an Ingres II database, returns resource]
  2732. ingres_connect(|[string database], [string username], [string password])
  2733. [ingres_fetch_array | Fetch a row of result into an array, returns array]
  2734. ingres_fetch_array(|[int result_type], [resource link])
  2735. [ingres_fetch_object | Fetch a row of result into an object., returns object]
  2736. ingres_fetch_object(|[int result_type], [resource link])
  2737. [ingres_fetch_row | Fetch a row of result into an enumerated array, returns array]
  2738. ingres_fetch_row(|[resource link])
  2739. [ingres_field_length | Get the length of a field, returns int]
  2740. ingres_field_length(|int index, [resource link])
  2741. [ingres_field_name | Get the name of a field in a query result., returns string]
  2742. ingres_field_name(|int index, [resource link])
  2743. [ingres_field_nullable | Test if a field is nullable, returns bool]
  2744. ingres_field_nullable(|int index, [resource link])
  2745. [ingres_field_precision | Get the precision of a field, returns int]
  2746. ingres_field_precision(|int index, [resource link])
  2747. [ingres_field_scale | Get the scale of a field, returns int]
  2748. ingres_field_scale(|int index, [resource link])
  2749. [ingres_field_type | Get the type of a field in a query result, returns string]
  2750. ingres_field_type(|int index, [resource link])
  2751. [ingres_num_fields | Get the number of fields returned by the last query, returns int]
  2752. ingres_num_fields(|[resource link])
  2753. [ingres_num_rows | Get the number of rows affected or returned by the last query, returns int]
  2754. ingres_num_rows(|[resource link])
  2755. [ingres_pconnect | Open a persistent connection to an Ingres II database, returns resource]
  2756. ingres_pconnect(|[string database], [string username], [string password])
  2757. [ingres_query | Send a SQL query to Ingres II, returns bool]
  2758. ingres_query(|string query, [resource link])
  2759. [ingres_rollback | Roll back a transaction, returns bool]
  2760. ingres_rollback(|[resource link])
  2761. ; -----------------------------------------------------------------------------
  2762. ; IRC Gateway - IRC Gateway Functions
  2763. ; -----------------------------------------------------------------------------
  2764. [ircg_channel_mode | Set channel mode flags for user, returns bool]
  2765. ircg_channel_mode(|resource connection, string channel, string mode_spec, string nick)
  2766. [ircg_disconnect | Close connection to server, returns bool]
  2767. ircg_disconnect(|resource connection, string reason)
  2768. [ircg_fetch_error_msg | Returns the error from previous IRCG operation, returns array]
  2769. ircg_fetch_error_msg(|resource connection)
  2770. [ircg_get_username | Get username for connection, returns string]
  2771. ircg_get_username(|resource connection)
  2772. [ircg_html_encode | Encodes HTML preserving output, returns bool]
  2773. ircg_html_encode(|string html_string)
  2774. [ircg_ignore_add | Add a user to your ignore list on a server, returns bool]
  2775. ircg_ignore_add(|resource connection, string nick)
  2776. [ircg_ignore_del | Remove a user from your ignore list on a server, returns bool]
  2777. ircg_ignore_del(|resource connection, string nick)
  2778. [ircg_is_conn_alive | Check connection status, returns bool]
  2779. ircg_is_conn_alive(|resource connection)
  2780. [ircg_join | Join a channel on a connected server, returns bool]
  2781. ircg_join(|resource connection, string channel, [string key])
  2782. [ircg_kick | Kick a user out of a channel on server, returns bool]
  2783. ircg_kick(|resource connection, string channel, string nick, string reason)
  2784. [ircg_lookup_format_messages | Check for the existence of a format message set, returns bool]
  2785. ircg_lookup_format_messages(|string name)
  2786. [ircg_msg | Send message to channel or user on server, returns bool]
  2787. ircg_msg(|resource connection, string recipient, string message, [boolean suppress])
  2788. [ircg_nick | Change nickname on server, returns bool]
  2789. ircg_nick(|resource connection, string nick)
  2790. [ircg_nickname_escape | Encode special characters in nickname to be IRC-compliant, returns string]
  2791. ircg_nickname_escape(|string nick)
  2792. [ircg_nickname_unescape | Decodes encoded nickname, returns string]
  2793. ircg_nickname_unescape(|string nick)
  2794. [ircg_notice | Send a notice to a user on server, returns bool]
  2795. ircg_notice(|resource connection, string , string message)
  2796. [ircg_part | Leave a channel on server, returns bool]
  2797. ircg_part(|resource connection, string channel)
  2798. [ircg_pconnect | Connect to an IRC server, returns resource]
  2799. ircg_pconnect(|string username, [string server_ip], [int server_port], [string msg_format], [array ctcp_messages], [array user_settings])
  2800. [ircg_register_format_messages | Register a format message set, returns bool]
  2801. ircg_register_format_messages(|string name, array messages)
  2802. [ircg_set_current | Set current connection for output, returns bool]
  2803. ircg_set_current(|resource connection)
  2804. [ircg_set_file | Set logfile for connection, returns bool]
  2805. ircg_set_file(|resource connection, string path)
  2806. [ircg_set_on_die | Set action to be executed when connection dies, returns bool]
  2807. ircg_set_on_die(|resource connection, string host, int port, string data)
  2808. [ircg_topic | Set topic for channel on server, returns bool]
  2809. ircg_topic(|resource connection, string channel, string new_topic)
  2810. [ircg_whois | Query server for user information, returns bool]
  2811. ircg_whois(|resource connection, string nick)
  2812. ; -----------------------------------------------------------------------------
  2813. ; Java - PHP / Java Integration
  2814. ; -----------------------------------------------------------------------------
  2815. [java_last_exception_clear | Clear last Java exception, returns void]
  2816. java_last_exception_clear()|
  2817. [java_last_exception_get | Get last Java exception, returns exception]
  2818. java_last_exception_get()|
  2819. ; -----------------------------------------------------------------------------
  2820. ; LDAP - LDAP functions
  2821. ; -----------------------------------------------------------------------------
  2822. [ldap_8859_to_t61 | Translate 8859 characters to t61 characters, returns string]
  2823. ldap_8859_to_t61(|string value)
  2824. [ldap_add | Add entries to LDAP directory, returns bool]
  2825. ldap_add(|resource link_identifier, string dn, array entry)
  2826. [ldap_bind | Bind to LDAP directory, returns bool]
  2827. ldap_bind(|resource link_identifier, [string bind_rdn], [string bind_password])
  2828. [ldap_close | Close link to LDAP server, returns bool]
  2829. ldap_close(|resource link_identifier)
  2830. [ldap_compare | Compare value of attribute found in entry specified with DN, returns bool]
  2831. ldap_compare(|resource link_identifier, string dn, string attribute, string value)
  2832. [ldap_connect | Connect to an LDAP server, returns resource]
  2833. ldap_connect(|[string hostname], [int port])
  2834. [ldap_count_entries | Count the number of entries in a search, returns int]
  2835. ldap_count_entries(|resource link_identifier, resource result_identifier)
  2836. [ldap_delete | Delete an entry from a directory, returns bool]
  2837. ldap_delete(|resource link_identifier, string dn)
  2838. [ldap_dn2ufn | Convert DN to User Friendly Naming format, returns string]
  2839. ldap_dn2ufn(|string dn)
  2840. [ldap_err2str | Convert LDAP error number into string error message, returns string]
  2841. ldap_err2str(|int errno)
  2842. [ldap_errno | Return the LDAP error number of the last LDAP command, returns int]
  2843. ldap_errno(|resource link_identifier)
  2844. [ldap_error | Return the LDAP error message of the last LDAP command, returns string]
  2845. ldap_error(|resource link_identifier)
  2846. [ldap_explode_dn | Splits DN into its component parts, returns array]
  2847. ldap_explode_dn(|string dn, int with_attrib)
  2848. [ldap_first_attribute | Return first attribute, returns string]
  2849. ldap_first_attribute(|resource link_identifier, resource result_entry_identifier, int ber_identifier)
  2850. [ldap_first_entry | Return first result id, returns resource]
  2851. ldap_first_entry(|resource link_identifier, resource result_identifier)
  2852. [ldap_first_reference | Return first reference, returns resource]
  2853. ldap_first_reference(|resource link, resource result)
  2854. [ldap_free_result | Free result memory, returns bool]
  2855. ldap_free_result(|resource result_identifier)
  2856. [ldap_get_attributes | Get attributes from a search result entry, returns array]
  2857. ldap_get_attributes(|resource link_identifier, resource result_entry_identifier)
  2858. [ldap_get_dn | Get the DN of a result entry, returns string]
  2859. ldap_get_dn(|resource link_identifier, resource result_entry_identifier)
  2860. [ldap_get_entries | Get all result entries, returns array]
  2861. ldap_get_entries(|resource link_identifier, resource result_identifier)
  2862. [ldap_get_option | Get the current value for given option, returns bool]
  2863. ldap_get_option(|resource link_identifier, int option, mixed retval)
  2864. [ldap_get_values_len | Get all binary values from a result entry, returns array]
  2865. ldap_get_values_len(|resource link_identifier, resource result_entry_identifier, string attribute)
  2866. [ldap_get_values | Get all values from a result entry, returns array]
  2867. ldap_get_values(|resource link_identifier, resource result_entry_identifier, string attribute)
  2868. [ldap_list | Single-level search, returns resource]
  2869. ldap_list(|resource link_identifier, string base_dn, string filter, [array attributes], [int attrsonly], [int sizelimit], [int timelimit], [int deref])
  2870. [ldap_mod_add | Add attribute values to current attributes, returns bool]
  2871. ldap_mod_add(|resource link_identifier, string dn, array entry)
  2872. [ldap_mod_del | Delete attribute values from current attributes, returns bool]
  2873. ldap_mod_del(|resource link_identifier, string dn, array entry)
  2874. [ldap_mod_replace | Replace attribute values with new ones, returns bool]
  2875. ldap_mod_replace(|resource link_identifier, string dn, array entry)
  2876. [ldap_modify | Modify an LDAP entry, returns bool]
  2877. ldap_modify(|resource link_identifier, string dn, array entry)
  2878. [ldap_next_attribute | Get the next attribute in result, returns string]
  2879. ldap_next_attribute(|resource link_identifier, resource result_entry_identifier, resource ber_identifier)
  2880. [ldap_next_entry | Get next result entry, returns resource]
  2881. ldap_next_entry(|resource link_identifier, resource result_entry_identifier)
  2882. [ldap_next_reference | Get next reference, returns resource]
  2883. ldap_next_reference(|resource link, resource entry)
  2884. [ldap_parse_reference | Extract information from reference entry, returns bool]
  2885. ldap_parse_reference(|resource link, resource entry, array referrals)
  2886. [ldap_parse_result | Extract information from result, returns bool]
  2887. ldap_parse_result(|resource link, resource result, int errcode, string matcheddn, string errmsg, array referrals)
  2888. [ldap_read | Read an entry, returns resource]
  2889. ldap_read(|resource link_identifier, string base_dn, string filter, [array attributes], [int attrsonly], [int sizelimit], [int timelimit], [int deref])
  2890. [ldap_rename | Modify the name of an entry, returns bool]
  2891. ldap_rename(|resource link_identifier, string dn, string newrdn, string newparent, bool deleteoldrdn)
  2892. [ldap_search | Search LDAP tree, returns resource]
  2893. ldap_search(|resource link_identifier, string base_dn, string filter, [array attributes], [int attrsonly], [int sizelimit], [int timelimit], [int deref])
  2894. [ldap_set_option | Set the value of the given option, returns bool]
  2895. ldap_set_option(|resource link_identifier, int option, mixed newval)
  2896. [ldap_set_rebind_proc | Set a callback function to do re-binds on referral chasing., returns bool]
  2897. ldap_set_rebind_proc(|resource link, string callback)
  2898. [ldap_sort | Sort LDAP result entries, returns bool]
  2899. ldap_sort(|resource link, resource result, string sortfilter)
  2900. [ldap_start_tls | Start TLS, returns bool]
  2901. ldap_start_tls(|resource link)
  2902. [ldap_t61_to_8859 | Translate t61 characters to 8859 characters, returns string]
  2903. ldap_t61_to_8859(|string value)
  2904. [ldap_unbind | Unbind from LDAP directory, returns bool]
  2905. ldap_unbind(|resource link_identifier)
  2906. ; -----------------------------------------------------------------------------
  2907. ; Mail - Mail functions
  2908. ; -----------------------------------------------------------------------------
  2909. [ezmlm_hash | Calculate the hash value needed by EZMLM, returns int]
  2910. ezmlm_hash(|string addr)
  2911. [mail | send mail, returns bool]
  2912. mail(|string to, string subject, string message, [string additional_headers], [string additional_parameters])
  2913. ; -----------------------------------------------------------------------------
  2914. ; mailparse - mailparse functions
  2915. ; -----------------------------------------------------------------------------
  2916. [mailparse_determine_best_xfer_encoding | Figures out the best way of encoding the content read from the file pointer fp, which must be seek-able, returns int]
  2917. mailparse_determine_best_xfer_encoding(|resource fp)
  2918. [mailparse_msg_create | Returns a handle that can be used to parse a message, returns int]
  2919. mailparse_msg_create()|
  2920. [mailparse_msg_extract_part_file | Extracts/decodes a message section, decoding the transfer encoding, returns string]
  2921. mailparse_msg_extract_part_file(|resource rfc2045, string filename, [string callbackfunc])
  2922. [mailparse_msg_extract_part | Extracts/decodes a message section. If callbackfunc is not specified, the contents will be sent to "stdout", returns void]
  2923. mailparse_msg_extract_part(|resource rfc2045, string msgbody, [string callbackfunc])
  2924. [mailparse_msg_free | Frees a handle allocated by mailparse_msg_create, returns void]
  2925. mailparse_msg_free(|resource rfc2045buf)
  2926. [mailparse_msg_get_part_data | Returns an associative array of info about the message, returns array]
  2927. mailparse_msg_get_part_data(|resource rfc2045)
  2928. [mailparse_msg_get_part | Returns a handle on a given section in a mimemessage, returns int]
  2929. mailparse_msg_get_part(|resource rfc2045, string mimesection)
  2930. [mailparse_msg_get_structure | Returns an array of mime section names in the supplied message, returns array]
  2931. mailparse_msg_get_structure(|resource rfc2045)
  2932. [mailparse_msg_parse_file | Parse file and return a resource representing the structure, returns resource]
  2933. mailparse_msg_parse_file(|string filename)
  2934. [mailparse_msg_parse | Incrementally parse data into buffer, returns void]
  2935. mailparse_msg_parse(|resource rfc2045buf, string data)
  2936. [mailparse_rfc822_parse_addresses | Parse addresses and returns a hash containing that data, returns array]
  2937. mailparse_rfc822_parse_addresses(|string addresses)
  2938. [mailparse_stream_encode | Streams data from source file pointer, apply encoding and write to destfp, returns bool]
  2939. mailparse_stream_encode(|resource sourcefp, resource destfp, string encoding)
  2940. [mailparse_uudecode_all | Scans the data from fp and extract each embedded uuencoded file. Returns an array listing filename information, returns array]
  2941. mailparse_uudecode_all(|resource fp)
  2942. ; -----------------------------------------------------------------------------
  2943. ; Math - Mathematical Functions
  2944. ; -----------------------------------------------------------------------------
  2945. [abs | Absolute value, returns mixed]
  2946. abs(|mixed number)
  2947. [acos | Arc cosine, returns float]
  2948. acos(|float arg)
  2949. [acosh | Inverse hyperbolic cosine, returns float]
  2950. acosh(|float arg)
  2951. [asin | Arc sine, returns float]
  2952. asin(|float arg)
  2953. [asinh | Inverse hyperbolic sine, returns float]
  2954. asinh(|float arg)
  2955. [atan2 | arc tangent of two variables, returns float]
  2956. atan2(|float y, float x)
  2957. [atan | Arc tangent, returns float]
  2958. atan(|float arg)
  2959. [atanh | Inverse hyperbolic tangent, returns float]
  2960. atanh(|float arg)
  2961. [base_convert | Convert a number between arbitrary bases, returns string]
  2962. base_convert(|string number, int frombase, int tobase)
  2963. [bindec | Binary to decimal, returns int]
  2964. bindec(|string binary_string)
  2965. [ceil | Round fractions up, returns float]
  2966. ceil(|float value)
  2967. [cos | Cosine, returns float]
  2968. cos(|float arg)
  2969. [cosh | Hyperbolic cosine, returns float]
  2970. cosh(|float arg)
  2971. [decbin | Decimal to binary, returns string]
  2972. decbin(|int number)
  2973. [dechex | Decimal to hexadecimal, returns string]
  2974. dechex(|int number)
  2975. [decoct | Decimal to octal, returns string]
  2976. decoct(|int number)
  2977. [deg2rad | Converts the number in degrees to the radian equivalent, returns float]
  2978. deg2rad(|float number)
  2979. [exp | Calculates the exponent of e (the Neperian or Natural logarithm base), returns float]
  2980. exp(|float arg)
  2981. [expm1 | Returns exp(number) - 1, computed in a way that is accurate even when the value of number is close to zero, returns float]
  2982. expm1(|float number)
  2983. [floor | Round fractions down, returns float]
  2984. floor(|float value)
  2985. [fmod | Returns the floating point remainder (modulo) of the division of the arguments, returns float]
  2986. fmod(|float x, float y)
  2987. [getrandmax | Show largest possible random value, returns int]
  2988. getrandmax()|
  2989. [hexdec | Hexadecimal to decimal, returns int]
  2990. hexdec(|string hex_string)
  2991. [hypot | Returns sqrt( num1*num1 + num2*num2), returns float]
  2992. hypot(|float num1, float num2)
  2993. [is_finite | Finds whether a value is a legal finite number, returns bool]
  2994. is_finite(|float val)
  2995. [is_infinite | Finds whether a value is infinite, returns bool]
  2996. is_infinite(|float val)
  2997. [is_nan | Finds whether a value is not a number, returns bool]
  2998. is_nan(|float val)
  2999. [lcg_value | Combined linear congruential generator, returns float]
  3000. lcg_value()|
  3001. [log10 | Base-10 logarithm, returns float]
  3002. log10(|float arg)
  3003. [log1p | Returns log(1 + number), computed in a way that accurate even when the val ue of number is close to zero, returns float]
  3004. log1p(|float number)
  3005. [log | Natural logarithm, returns float]
  3006. log(|float arg, [float base])
  3007. [max | Find highest value, returns mixed]
  3008. max(|number arg1, number arg2, [number ...])
  3009. [min | Find lowest value, returns mixed]
  3010. min(|number arg1, number arg2, [number ...])
  3011. [mt_getrandmax | Show largest possible random value, returns int]
  3012. mt_getrandmax()|
  3013. [mt_rand | Generate a better random value, returns int]
  3014. mt_rand(|[int min], int max)
  3015. [mt_srand | Seed the better random number generator, returns void]
  3016. mt_srand(|int seed)
  3017. [octdec | Octal to decimal, returns int]
  3018. octdec(|string octal_string)
  3019. [pi | Get value of pi, returns float]
  3020. pi()|
  3021. [pow | Exponential expression, returns number]
  3022. pow(|number base, number exp)
  3023. [rad2deg | Converts the radian number to the equivalent number in degrees, returns float]
  3024. rad2deg(|float number)
  3025. [rand | Generate a random value, returns int]
  3026. rand(|[int min], int max)
  3027. [round | Rounds a float, returns float]
  3028. round(|float val, [int precision])
  3029. [sin | Sine, returns float]
  3030. sin(|float arg)
  3031. [sinh | Hyperbolic sine, returns float]
  3032. sinh(|float arg)
  3033. [sqrt | Square root, returns float]
  3034. sqrt(|float arg)
  3035. [srand | Seed the random number generator, returns void]
  3036. srand(|int seed)
  3037. [tan | Tangent, returns float]
  3038. tan(|float arg)
  3039. [tanh | Hyperbolic tangent, returns float]
  3040. tanh(|float arg)
  3041. ; -----------------------------------------------------------------------------
  3042. ; Multi-Byte String - Multi-Byte String Functions
  3043. ; -----------------------------------------------------------------------------
  3044. [mb_convert_case | Perform case folding on a string, returns string]
  3045. mb_convert_case(|string str, int mode, [string encoding])
  3046. [mb_convert_encoding | Convert character encoding, returns string]
  3047. mb_convert_encoding(|string str, string to-encoding, [mixed from-encoding])
  3048. [mb_convert_kana | Convert "kana" one from another ("zen-kaku" ,"han-kaku" and more), returns string]
  3049. mb_convert_kana(|string str, string option, [mixed encoding])
  3050. [mb_convert_variables | Convert character code in variable(s), returns string]
  3051. mb_convert_variables(|string to-encoding, mixed from-encoding, mixed vars)
  3052. [mb_decode_mimeheader | Decode string in MIME header field, returns string]
  3053. mb_decode_mimeheader(|string str)
  3054. [mb_decode_numericentity | Decode HTML numeric string reference to character, returns string]
  3055. mb_decode_numericentity(|string str, array convmap, [string encoding])
  3056. [mb_detect_encoding | Detect character encoding, returns string]
  3057. mb_detect_encoding(|string str, [mixed encoding-list])
  3058. [mb_detect_order | Set/Get character encoding detection order, returns array]
  3059. mb_detect_order(|[mixed encoding-list])
  3060. [mb_encode_mimeheader | Encode string for MIME header, returns string]
  3061. mb_encode_mimeheader(|string str, [string charset], [string transfer-encoding], [string linefeed])
  3062. [mb_encode_numericentity | Encode character to HTML numeric string reference, returns string]
  3063. mb_encode_numericentity(|string str, array convmap, [string encoding])
  3064. [mb_ereg_match | Regular expression match for multibyte string, returns bool]
  3065. mb_ereg_match(|string pattern, string string, [string option])
  3066. [mb_ereg_replace | Replace regular expression with multibyte support, returns string]
  3067. mb_ereg_replace(|string pattern, string replacement, string string, [array option])
  3068. [mb_ereg_search_getpos | Returns start point for next regular expression match, returns array]
  3069. mb_ereg_search_getpos()|
  3070. [mb_ereg_search_getregs | Retrieve the result from the last multibyte regular expression match, returns array]
  3071. mb_ereg_search_getregs()|
  3072. [mb_ereg_search_init | Setup string and regular expression for multibyte regular expression match, returns array]
  3073. mb_ereg_search_init(|string string, [string pattern], [string option])
  3074. [mb_ereg_search_pos | Return position and length of matched part of multibyte regular expression for predefined multibyte string, returns array]
  3075. mb_ereg_search_pos(|[string pattern], [string option])
  3076. [mb_ereg_search_regs | Returns the matched part of multibyte regular expression, returns array]
  3077. mb_ereg_search_regs(|[string pattern], [string option])
  3078. [mb_ereg_search_setpos | Set start point of next regular expression match, returns array]
  3079. mb_ereg_search_setpos()|
  3080. [mb_ereg_search | Multibyte regular expression match for predefined multibyte string, returns bool]
  3081. mb_ereg_search(|[string pattern], [string option])
  3082. [mb_ereg | Regular expression match with multibyte support, returns int]
  3083. mb_ereg(|string pattern, string string, [array regs])
  3084. [mb_eregi_replace | Replace regular expression with multibyte support ignoring case, returns string]
  3085. mb_eregi_replace(|string pattern, string replace, string string)
  3086. [mb_eregi | Regular expression match ignoring case with multibyte support, returns int]
  3087. mb_eregi(|string pattern, string string, [array regs])
  3088. [mb_get_info | Get internal settings of mbstring, returns string]
  3089. mb_get_info(|[string type])
  3090. [mb_http_input | Detect HTTP input character encoding, returns string]
  3091. mb_http_input(|[string type])
  3092. [mb_http_output | Set/Get HTTP output character encoding, returns string]
  3093. mb_http_output(|[string encoding])
  3094. [mb_internal_encoding | Set/Get internal character encoding, returns string]
  3095. mb_internal_encoding(|[string encoding])
  3096. [mb_language | Set/Get current language, returns string]
  3097. mb_language(|[string language])
  3098. [mb_output_handler | Callback function converts character encoding in output buffer, returns string]
  3099. mb_output_handler(|string contents, int status)
  3100. [mb_parse_str | Parse GET/POST/COOKIE data and set global variable, returns bool]
  3101. mb_parse_str(|string encoded_string, [array result])
  3102. [mb_preferred_mime_name | Get MIME charset string, returns string]
  3103. mb_preferred_mime_name(|string encoding)
  3104. [mb_regex_encoding | Returns current encoding for multibyte regex as string, returns string]
  3105. mb_regex_encoding(|[string encoding])
  3106. [mb_regex_set_options | Set/Get the default options for mbregex functions, returns string]
  3107. mb_regex_set_options(|[string options])
  3108. [mb_send_mail | Send encoded mail., returns bool]
  3109. mb_send_mail(|string to, string subject, string message, [string additional_headers], [string additional_parameter])
  3110. [mb_split | Split multibyte string using regular expression, returns array]
  3111. mb_split(|string pattern, string string, [int limit])
  3112. [mb_strcut | Get part of string, returns string]
  3113. mb_strcut(|string str, int start, [int length], [string encoding])
  3114. [mb_strimwidth | Get truncated string with specified width, returns string]
  3115. mb_strimwidth(|string str, int start, int width, string trimmarker, [string encoding])
  3116. [mb_strlen | Get string length, returns string]
  3117. mb_strlen(|string str, [string encoding])
  3118. [mb_strpos | Find position of first occurrence of string in a string, returns int]
  3119. mb_strpos(|string haystack, string needle, [int offset], [string encoding])
  3120. [mb_strrpos | Find position of last occurrence of a string in a string, returns int]
  3121. mb_strrpos(|string haystack, string needle, [string encoding])
  3122. [mb_strtolower | Make a string lowercase, returns string]
  3123. mb_strtolower(|string str, [string encoding])
  3124. [mb_strtoupper | Make a string uppercase, returns string]
  3125. mb_strtoupper(|string str, [string encoding])
  3126. [mb_strwidth | Return width of string, returns int]
  3127. mb_strwidth(|string str, [string encoding])
  3128. [mb_substitute_character | Set/Get substitution character, returns mixed]
  3129. mb_substitute_character(|[mixed substrchar])
  3130. [mb_substr_count | Count the number of substring occurrences, returns int]
  3131. mb_substr_count(|string haystack, string needle, [string encoding])
  3132. [mb_substr | Get part of string, returns string]
  3133. mb_substr(|string str, int start, [int length], [string encoding])
  3134. ; -----------------------------------------------------------------------------
  3135. ; MCAL - MCAL functions
  3136. ; -----------------------------------------------------------------------------
  3137. [mcal_append_event | Store a new event into an MCAL calendar, returns int]
  3138. mcal_append_event(|int mcal_stream)
  3139. [mcal_close | Close an MCAL stream, returns int]
  3140. mcal_close(|int mcal_stream, int flags)
  3141. [mcal_create_calendar | Create a new MCAL calendar, returns bool]
  3142. mcal_create_calendar(|int stream, string calendar)
  3143. [mcal_date_compare | Compares two dates, returns int]
  3144. mcal_date_compare(|int a_year, int a_month, int a_day, int b_year, int b_month, int b_day)
  3145. [mcal_date_valid | Returns TRUE if the given year, month, day is a valid date, returns int]
  3146. mcal_date_valid(|int year, int month, int day)
  3147. [mcal_day_of_week | Returns the day of the week of the given date, returns int]
  3148. mcal_day_of_week(|int year, int month, int day)
  3149. [mcal_day_of_year | Returns the day of the year of the given date, returns int]
  3150. mcal_day_of_year(|int year, int month, int day)
  3151. [mcal_days_in_month | Returns the number of days in a month, returns int]
  3152. mcal_days_in_month(|int month, int leap_year)
  3153. [mcal_delete_calendar | Delete an MCAL calendar, returns string]
  3154. mcal_delete_calendar(|int stream, string calendar)
  3155. [mcal_delete_event | Delete an event from an MCAL calendar, returns int]
  3156. mcal_delete_event(|int mcal_stream, [int event_id])
  3157. [mcal_event_add_attribute | Adds an attribute and a value to the streams global event structure, returns void]
  3158. mcal_event_add_attribute(|int stream, string attribute, string value)
  3159. [mcal_event_init | Initializes a streams global event structure, returns int]
  3160. mcal_event_init(|int stream)
  3161. [mcal_event_set_alarm | Sets the alarm of the streams global event structure, returns int]
  3162. mcal_event_set_alarm(|int stream, int alarm)
  3163. [mcal_event_set_category | Sets the category of the streams global event structure, returns int]
  3164. mcal_event_set_category(|int stream, string category)
  3165. [mcal_event_set_class | Sets the class of the streams global event structure, returns int]
  3166. mcal_event_set_class(|int stream, int class)
  3167. [mcal_event_set_description | Sets the description of the streams global event structure, returns int]
  3168. mcal_event_set_description(|int stream, string description)
  3169. [mcal_event_set_end | Sets the end date and time of the streams global event structure, returns int]
  3170. mcal_event_set_end(|int stream, int year, int month, [int day], [int hour], [int min], [int sec])
  3171. [mcal_event_set_recur_daily | Sets the recurrence of the streams global event structure, returns int]
  3172. mcal_event_set_recur_daily(|int stream, int year, int month, int day, int interval)
  3173. [mcal_event_set_recur_monthly_mday | Sets the recurrence of the streams global event structure, returns int]
  3174. mcal_event_set_recur_monthly_mday(|int stream, int year, int month, int day, int interval)
  3175. [mcal_event_set_recur_monthly_wday | Sets the recurrence of the streams global event structure, returns int]
  3176. mcal_event_set_recur_monthly_wday(|int stream, int year, int month, int day, int interval)
  3177. [mcal_event_set_recur_none | Sets the recurrence of the streams global event structure, returns int]
  3178. mcal_event_set_recur_none(|int stream)
  3179. [mcal_event_set_recur_weekly | Sets the recurrence of the streams global event structure, returns int]
  3180. mcal_event_set_recur_weekly(|int stream, int year, int month, int day, int interval, int weekdays)
  3181. [mcal_event_set_recur_yearly | Sets the recurrence of the streams global event structure, returns int]
  3182. mcal_event_set_recur_yearly(|int stream, int year, int month, int day, int interval)
  3183. [mcal_event_set_start | Sets the start date and time of the streams global event structure, returns int]
  3184. mcal_event_set_start(|int stream, int year, int month, [int day], [int hour], [int min], [int sec])
  3185. [mcal_event_set_title | Sets the title of the streams global event structure, returns int]
  3186. mcal_event_set_title(|int stream, string title)
  3187. [mcal_expunge | Deletes all events marked for being expunged., returns int]
  3188. mcal_expunge(|int stream)
  3189. [mcal_fetch_current_stream_event | Returns an object containing the current streams event structure, returns object]
  3190. mcal_fetch_current_stream_event(|int stream)
  3191. [mcal_fetch_event | Fetches an event from the calendar stream, returns object]
  3192. mcal_fetch_event(|int mcal_stream, int event_id, [int options])
  3193. [mcal_is_leap_year | Returns if the given year is a leap year or not, returns int]
  3194. mcal_is_leap_year(|int year)
  3195. [mcal_list_alarms | Return a list of events that has an alarm triggered at the given datetime, returns array]
  3196. mcal_list_alarms(|int mcal_stream, [int begin_year], [int begin_month], [int begin_day], [int end_year], [int end_month], [int end_day])
  3197. [mcal_list_events | Return a list of IDs for a date or a range of dates, returns array]
  3198. mcal_list_events(|int mcal_stream, object begin_date, [object end_date])
  3199. [mcal_next_recurrence | Returns the next recurrence of the event, returns int]
  3200. mcal_next_recurrence(|int stream, int weekstart, array next)
  3201. [mcal_open | Opens up an MCAL connection, returns int]
  3202. mcal_open(|string calendar, string username, string password, [int options])
  3203. [mcal_popen | Opens up a persistent MCAL connection, returns int]
  3204. mcal_popen(|string calendar, string username, string password, [int options])
  3205. [mcal_rename_calendar | Rename an MCAL calendar, returns string]
  3206. mcal_rename_calendar(|int stream, string old_name, string new_name)
  3207. [mcal_reopen | Reopens an MCAL connection, returns int]
  3208. mcal_reopen(|string calendar, [int options])
  3209. [mcal_snooze | Turn off an alarm for an event, returns bool]
  3210. mcal_snooze(|int stream_id, int event_id)
  3211. [mcal_store_event | Modify an existing event in an MCAL calendar, returns int]
  3212. mcal_store_event(|int mcal_stream)
  3213. [mcal_time_valid | Returns TRUE if the given year, month, day is a valid time, returns int]
  3214. mcal_time_valid(|int hour, int minutes, int seconds)
  3215. [mcal_week_of_year | Returns the week number of the given date, returns int]
  3216. mcal_week_of_year(|int day, int month, int year)
  3217. ; -----------------------------------------------------------------------------
  3218. ; mcrypt - Mcrypt Encryption Functions
  3219. ; -----------------------------------------------------------------------------
  3220. [mcrypt_cbc | Encrypt/decrypt data in CBC mode, returns string]
  3221. mcrypt_cbc(|int cipher, string key, string data, int mode, [string iv])
  3222. [mcrypt_cfb | Encrypt/decrypt data in CFB mode, returns string]
  3223. mcrypt_cfb(|int cipher, string key, string data, int mode, string iv)
  3224. [mcrypt_create_iv | Create an initialization vector (IV) from a random source, returns string]
  3225. mcrypt_create_iv(|int size, int source)
  3226. [mcrypt_decrypt | Decrypts crypttext with given parameters, returns string]
  3227. mcrypt_decrypt(|string cipher, string key, string data, string mode, [string iv])
  3228. [mcrypt_ecb | Encrypt/decrypt data in ECB mode, returns string]
  3229. mcrypt_ecb(|int cipher, string key, string data, int mode)
  3230. [mcrypt_enc_get_algorithms_name | Returns the name of the opened algorithm, returns string]
  3231. mcrypt_enc_get_algorithms_name(|resource td)
  3232. [mcrypt_enc_get_block_size | Returns the blocksize of the opened algorithm, returns int]
  3233. mcrypt_enc_get_block_size(|resource td)
  3234. [mcrypt_enc_get_iv_size | Returns the size of the IV of the opened algorithm, returns int]
  3235. mcrypt_enc_get_iv_size(|resource td)
  3236. [mcrypt_enc_get_key_size | Returns the maximum supported keysize of the opened mode, returns int]
  3237. mcrypt_enc_get_key_size(|resource td)
  3238. [mcrypt_enc_get_modes_name | Returns the name of the opened mode, returns string]
  3239. mcrypt_enc_get_modes_name(|resource td)
  3240. [mcrypt_enc_get_supported_key_sizes | Returns an array with the supported keysizes of the opened algorithm, returns array]
  3241. mcrypt_enc_get_supported_key_sizes(|resource td)
  3242. [mcrypt_enc_is_block_algorithm_mode | Checks whether the encryption of the opened mode works on blocks, returns bool]
  3243. mcrypt_enc_is_block_algorithm_mode(|resource td)
  3244. [mcrypt_enc_is_block_algorithm | Checks whether the algorithm of the opened mode is a block algorithm, returns bool]
  3245. mcrypt_enc_is_block_algorithm(|resource td)
  3246. [mcrypt_enc_is_block_mode | Checks whether the opened mode outputs blocks, returns bool]
  3247. mcrypt_enc_is_block_mode(|resource td)
  3248. [mcrypt_enc_self_test | This function runs a self test on the opened module, returns bool]
  3249. mcrypt_enc_self_test(|resource td)
  3250. [mcrypt_encrypt | Encrypts plaintext with given parameters, returns string]
  3251. mcrypt_encrypt(|string cipher, string key, string data, string mode, [string iv])
  3252. [mcrypt_generic_deinit | This function deinitializes an encryption module, returns bool]
  3253. mcrypt_generic_deinit(|resource td)
  3254. [mcrypt_generic_end | This function terminates encryption, returns bool]
  3255. mcrypt_generic_end(|resource td)
  3256. [mcrypt_generic_init | This function initializes all buffers needed for encryption, returns int]
  3257. mcrypt_generic_init(|resource td, string key, string iv)
  3258. [mcrypt_generic | This function encrypts data, returns string]
  3259. mcrypt_generic(|resource td, string data)
  3260. [mcrypt_get_block_size | Get the block size of the specified cipher, returns int]
  3261. mcrypt_get_block_size(|int cipher)
  3262. [mcrypt_get_cipher_name | Get the name of the specified cipher, returns string]
  3263. mcrypt_get_cipher_name(|int cipher)
  3264. [mcrypt_get_iv_size | Returns the size of the IV belonging to a specific cipher/mode combination, returns int]
  3265. mcrypt_get_iv_size(|resource td)
  3266. [mcrypt_get_key_size | Get the key size of the specified cipher, returns int]
  3267. mcrypt_get_key_size(|int cipher)
  3268. [mcrypt_list_algorithms | Get an array of all supported ciphers, returns array]
  3269. mcrypt_list_algorithms(|[string lib_dir])
  3270. [mcrypt_list_modes | Get an array of all supported modes, returns array]
  3271. mcrypt_list_modes(|[string lib_dir])
  3272. [mcrypt_module_close | Close the mcrypt module, returns bool]
  3273. mcrypt_module_close(|resource td)
  3274. [mcrypt_module_get_algo_block_size | Returns the blocksize of the specified algorithm, returns int]
  3275. mcrypt_module_get_algo_block_size(|string algorithm, [string lib_dir])
  3276. [mcrypt_module_get_algo_key_size | Returns the maximum supported keysize of the opened mode, returns int]
  3277. mcrypt_module_get_algo_key_size(|string algorithm, [string lib_dir])
  3278. [mcrypt_module_get_supported_key_sizes | Returns an array with the supported keysizes of the opened algorithm, returns array]
  3279. mcrypt_module_get_supported_key_sizes(|string algorithm, [string lib_dir])
  3280. [mcrypt_module_is_block_algorithm_mode | This function returns if the the specified module is a block algorithm or not, returns bool]
  3281. mcrypt_module_is_block_algorithm_mode(|string mode, [string lib_dir])
  3282. [mcrypt_module_is_block_algorithm | This function checks whether the specified algorithm is a block algorithm, returns bool]
  3283. mcrypt_module_is_block_algorithm(|string algorithm, [string lib_dir])
  3284. [mcrypt_module_is_block_mode | This function returns if the the specified mode outputs blocks or not, returns bool]
  3285. mcrypt_module_is_block_mode(|string mode, [string lib_dir])
  3286. [mcrypt_module_open | Opens the module of the algorithm and the mode to be used, returns resource]
  3287. mcrypt_module_open(|string algorithm, string algorithm_directory, string mode, string mode_directory)
  3288. [mcrypt_module_self_test | This function runs a self test on the specified module, returns bool]
  3289. mcrypt_module_self_test(|string algorithm, [string lib_dir])
  3290. [mcrypt_ofb | Encrypt/decrypt data in OFB mode, returns string]
  3291. mcrypt_ofb(|int cipher, string key, string data, int mode, string iv)
  3292. [mdecrypt_generic | Decrypt data, returns string]
  3293. mdecrypt_generic(|resource td, string data)
  3294. ; -----------------------------------------------------------------------------
  3295. ; MCVE - MCVE Payment Functions
  3296. ; -----------------------------------------------------------------------------
  3297. [mcve_adduser | Add an MCVE user using usersetup structure, returns int]
  3298. mcve_adduser(|resource conn, string admin_password, int usersetup)
  3299. [mcve_adduserarg | Add a value to user configuration structure, returns int]
  3300. mcve_adduserarg(|resource usersetup, int argtype, string argval)
  3301. [mcve_bt | Get unsettled batch totals, returns int]
  3302. mcve_bt(|resource conn, string username, string password)
  3303. [mcve_checkstatus | Check to see if a transaction has completed, returns int]
  3304. mcve_checkstatus(|resource conn, int identifier)
  3305. [mcve_chkpwd | Verify Password, returns int]
  3306. mcve_chkpwd(|resource conn, string username, string password)
  3307. [mcve_chngpwd | Change the system administrator's password, returns int]
  3308. mcve_chngpwd(|resource conn, string admin_password, string new_password)
  3309. [mcve_completeauthorizations | Number of complete authorizations in queue, returning an array of their identifiers, returns int]
  3310. mcve_completeauthorizations(|resource conn, int &array)
  3311. [mcve_connect | Establish the connection to MCVE, returns int]
  3312. mcve_connect(|resource conn)
  3313. [mcve_connectionerror | Get a textual representation of why a connection failed, returns string]
  3314. mcve_connectionerror(|resource conn)
  3315. [mcve_deleteresponse | Delete specified transaction from MCVE_CONN structure, returns bool]
  3316. mcve_deleteresponse(|resource conn, int identifier)
  3317. [mcve_deletetrans | Delete specified transaction from MCVE_CONN structure, returns bool]
  3318. mcve_deletetrans(|resource conn, int identifier)
  3319. [mcve_deleteusersetup | Deallocate data associated with usersetup structure, returns void]
  3320. mcve_deleteusersetup(|resource usersetup)
  3321. [mcve_deluser | Delete an MCVE user account, returns int]
  3322. mcve_deluser(|resource conn, string admin_password, string username)
  3323. [mcve_destroyconn | Destroy the connection and MCVE_CONN structure, returns void]
  3324. mcve_destroyconn(|resource conn)
  3325. [mcve_destroyengine | Free memory associated with IP/SSL connectivity, returns void]
  3326. mcve_destroyengine()|
  3327. [mcve_disableuser | Disable an active MCVE user account, returns int]
  3328. mcve_disableuser(|resource conn, string admin_password, string username)
  3329. [mcve_edituser | Edit MCVE user using usersetup structure, returns int]
  3330. mcve_edituser(|resource conn, string admin_password, int usersetup)
  3331. [mcve_enableuser | Enable an inactive MCVE user account, returns int]
  3332. mcve_enableuser(|resource conn, string admin_password, string username)
  3333. [mcve_force | Send a FORCE to MCVE. (typically, a phone-authorization), returns int]
  3334. mcve_force(|resource conn, string username, string password, string trackdata, string account, string expdate, float amount, string authcode, string comments, string clerkid, string stationid, int ptrannum)
  3335. [mcve_getcell | Get a specific cell from a comma delimited response by column name, returns string]
  3336. mcve_getcell(|resource conn, int identifier, string column, int row)
  3337. [mcve_getcellbynum | Get a specific cell from a comma delimited response by column number, returns string]
  3338. mcve_getcellbynum(|resource conn, int identifier, int column, int row)
  3339. [mcve_getcommadelimited | Get the RAW comma delimited data returned from MCVE, returns string]
  3340. mcve_getcommadelimited(|resource conn, int identifier)
  3341. [mcve_getheader | Get the name of the column in a comma-delimited response, returns string]
  3342. mcve_getheader(|resource conn, int identifier, int column_num)
  3343. [mcve_getuserarg | Grab a value from usersetup structure, returns string]
  3344. mcve_getuserarg(|resource usersetup, int argtype)
  3345. [mcve_getuserparam | Get a user response parameter, returns string]
  3346. mcve_getuserparam(|resource conn, long identifier, int key)
  3347. [mcve_gft | Audit MCVE for Failed transactions, returns int]
  3348. mcve_gft(|resource conn, string username, string password, int type, string account, string clerkid, string stationid, string comments, int ptrannum, string startdate, string enddate)
  3349. [mcve_gl | Audit MCVE for settled transactions, returns int]
  3350. mcve_gl(|int conn, string username, string password, int type, string account, string batch, string clerkid, string stationid, string comments, int ptrannum, string startdate, string enddate)
  3351. [mcve_gut | Audit MCVE for Unsettled Transactions, returns int]
  3352. mcve_gut(|resource conn, string username, string password, int type, string account, string clerkid, string stationid, string comments, int ptrannum, string startdate, string enddate)
  3353. [mcve_initconn | Create and initialize an MCVE_CONN structure, returns resource]
  3354. mcve_initconn()|
  3355. [mcve_initengine | Ready the client for IP/SSL Communication, returns int]
  3356. mcve_initengine(|string location)
  3357. [mcve_initusersetup | Initialize structure to store user data, returns resource]
  3358. mcve_initusersetup()|
  3359. [mcve_iscommadelimited | Checks to see if response is comma delimited, returns int]
  3360. mcve_iscommadelimited(|resource conn, int identifier)
  3361. [mcve_liststats | List statistics for all users on MCVE system, returns int]
  3362. mcve_liststats(|resource conn, string admin_password)
  3363. [mcve_listusers | List all users on MCVE system, returns int]
  3364. mcve_listusers(|resource conn, string admin_password)
  3365. [mcve_maxconntimeout | The maximum amount of time the API will attempt a connection to MCVE, returns bool]
  3366. mcve_maxconntimeout(|resource conn, int secs)
  3367. [mcve_monitor | Perform communication with MCVE (send/receive data) Non-blocking, returns int]
  3368. mcve_monitor(|resource conn)
  3369. [mcve_numcolumns | Number of columns returned in a comma delimited response, returns int]
  3370. mcve_numcolumns(|resource conn, int identifier)
  3371. [mcve_numrows | Number of rows returned in a comma delimited response, returns int]
  3372. mcve_numrows(|resource conn, int identifier)
  3373. [mcve_override | Send an OVERRIDE to MCVE, returns int]
  3374. mcve_override(|resource conn, string username, string password, string trackdata, string account, string expdate, float amount, string street, string zip, string cv, string comments, string clerkid, string stationid, int ptrannum)
  3375. [mcve_parsecommadelimited | Parse the comma delimited response so mcve_getcell, etc will work, returns int]
  3376. mcve_parsecommadelimited(|resource conn, int identifier)
  3377. [mcve_ping | Send a ping request to MCVE, returns int]
  3378. mcve_ping(|resource conn)
  3379. [mcve_preauth | Send a PREAUTHORIZATION to MCVE, returns int]
  3380. mcve_preauth(|resource conn, string username, string password, string trackdata, string account, string expdate, float amount, string street, string zip, string cv, string comments, string clerkid, string stationid, int ptrannum)
  3381. [mcve_preauthcompletion | Complete a PREAUTHORIZATION... Ready it for settlement, returns int]
  3382. mcve_preauthcompletion(|resource conn, string username, string password, float finalamount, int sid, int ptrannum)
  3383. [mcve_qc | Audit MCVE for a list of transactions in the outgoing queue, returns int]
  3384. mcve_qc(|resource conn, string username, string password, string clerkid, string stationid, string comments, int ptrannum)
  3385. [mcve_responseparam | Get a custom response parameter, returns string]
  3386. mcve_responseparam(|resource conn, long identifier, string key)
  3387. [mcve_return | Issue a RETURN or CREDIT to MCVE, returns int]
  3388. mcve_return(|int conn, string username, string password, string trackdata, string account, string expdate, float amount, string comments, string clerkid, string stationid, int ptrannum)
  3389. [mcve_returncode | Grab the exact return code from the transaction, returns int]
  3390. mcve_returncode(|resource conn, int identifier)
  3391. [mcve_returnstatus | Check to see if the transaction was successful, returns int]
  3392. mcve_returnstatus(|resource conn, int identifier)
  3393. [mcve_sale | Send a SALE to MCVE, returns int]
  3394. mcve_sale(|resource conn, string username, string password, string trackdata, string account, string expdate, float amount, string street, string zip, string cv, string comments, string clerkid, string stationid, int ptrannum)
  3395. [mcve_setblocking | Set blocking/non-blocking mode for connection, returns int]
  3396. mcve_setblocking(|resource conn, int tf)
  3397. [mcve_setdropfile | Set the connection method to Drop-File, returns int]
  3398. mcve_setdropfile(|resource conn, string directory)
  3399. [mcve_setip | Set the connection method to IP, returns int]
  3400. mcve_setip(|resource conn, string host, int port)
  3401. [mcve_setssl_files | Set certificate key files and certificates if server requires client certificate verification, returns int]
  3402. mcve_setssl_files(|string sslkeyfile, string sslcertfile)
  3403. [mcve_setssl | Set the connection method to SSL, returns int]
  3404. mcve_setssl(|resource conn, string host, int port)
  3405. [mcve_settimeout | Set maximum transaction time (per trans), returns int]
  3406. mcve_settimeout(|resource conn, int seconds)
  3407. [mcve_settle | Issue a settlement command to do a batch deposit, returns int]
  3408. mcve_settle(|resource conn, string username, string password, string batch)
  3409. [mcve_text_avs | Get a textual representation of the return_avs, returns string]
  3410. mcve_text_avs(|string code)
  3411. [mcve_text_code | Get a textual representation of the return_code, returns string]
  3412. mcve_text_code(|string code)
  3413. [mcve_text_cv | Get a textual representation of the return_cv, returns string]
  3414. mcve_text_cv(|int code)
  3415. [mcve_transactionauth | Get the authorization number returned for the transaction (alpha-numeric), returns string]
  3416. mcve_transactionauth(|resource conn, int identifier)
  3417. [mcve_transactionavs | Get the Address Verification return status, returns int]
  3418. mcve_transactionavs(|resource conn, int identifier)
  3419. [mcve_transactionbatch | Get the batch number associated with the transaction, returns int]
  3420. mcve_transactionbatch(|resource conn, int identifier)
  3421. [mcve_transactioncv | Get the CVC2/CVV2/CID return status, returns int]
  3422. mcve_transactioncv(|resource conn, int identifier)
  3423. [mcve_transactionid | Get the unique system id for the transaction, returns int]
  3424. mcve_transactionid(|resource conn, int identifier)
  3425. [mcve_transactionitem | Get the ITEM number in the associated batch for this transaction, returns int]
  3426. mcve_transactionitem(|resource conn, int identifier)
  3427. [mcve_transactionssent | Check to see if outgoing buffer is clear, returns int]
  3428. mcve_transactionssent(|resource conn)
  3429. [mcve_transactiontext | Get verbiage (text) return from MCVE or processing institution, returns string]
  3430. mcve_transactiontext(|resource conn, int identifier)
  3431. [mcve_transinqueue | Number of transactions in client-queue, returns int]
  3432. mcve_transinqueue(|resource conn)
  3433. [mcve_transnew | Start a new transaction, returns int]
  3434. mcve_transnew(|resource conn)
  3435. [mcve_transparam | Add a parameter to a transaction, returns int]
  3436. mcve_transparam(|resource conn, long identifier, int key)
  3437. [mcve_transsend | Finalize and send the transaction, returns int]
  3438. mcve_transsend(|resource conn, long identifier)
  3439. [mcve_ub | Get a list of all Unsettled batches, returns int]
  3440. mcve_ub(|resource conn, string username, string password)
  3441. [mcve_uwait | Wait x microsecs, returns int]
  3442. mcve_uwait(|long microsecs)
  3443. [mcve_verifyconnection | Set whether or not to PING upon connect to verify connection, returns bool]
  3444. mcve_verifyconnection(|resource conn, int tf)
  3445. [mcve_verifysslcert | Set whether or not to verify the server ssl certificate, returns bool]
  3446. mcve_verifysslcert(|resource conn, int tf)
  3447. [mcve_void | VOID a transaction in the settlement queue, returns int]
  3448. mcve_void(|resource conn, string username, string password, int sid, int ptrannum)
  3449. ; -----------------------------------------------------------------------------
  3450. ; mhash - Mhash Functions
  3451. ; -----------------------------------------------------------------------------
  3452. [mhash_count | Get the highest available hash id, returns int]
  3453. mhash_count()|
  3454. [mhash_get_block_size | Get the block size of the specified hash, returns int]
  3455. mhash_get_block_size(|int hash)
  3456. [mhash_get_hash_name | Get the name of the specified hash, returns string]
  3457. mhash_get_hash_name(|int hash)
  3458. [mhash_keygen_s2k | Generates a key, returns string]
  3459. mhash_keygen_s2k(|int hash, string password, string salt, int bytes)
  3460. [mhash | Compute hash, returns string]
  3461. mhash(|int hash, string data, [string key])
  3462. ; -----------------------------------------------------------------------------
  3463. ; Mimetype - Mimetype Functions
  3464. ; -----------------------------------------------------------------------------
  3465. [mime_content_type | Detect MIME Content-type for a file, returns string]
  3466. mime_content_type(|string filename)
  3467. ; -----------------------------------------------------------------------------
  3468. ; MS SQL Server - Microsoft SQL Server functions
  3469. ; -----------------------------------------------------------------------------
  3470. [mssql_bind | Adds a parameter to a stored procedure or a remote stored procedure, returns bool]
  3471. mssql_bind(|resource stmt, string param_name, mixed var, int type, [int is_output], [int is_null], [int maxlen])
  3472. [mssql_close | Close MS SQL Server connection, returns bool]
  3473. mssql_close(|[resource link_identifier])
  3474. [mssql_connect | Open MS SQL server connection, returns int]
  3475. mssql_connect(|[string servername], [string username], [string password])
  3476. [mssql_data_seek | Moves internal row pointer, returns bool]
  3477. mssql_data_seek(|resource result_identifier, int row_number)
  3478. [mssql_execute | Executes a stored procedure on a MS SQL server database, returns mixed]
  3479. mssql_execute(|resource stmt, [bool skip_results])
  3480. [mssql_fetch_array | Fetch a result row as an associative array, a numeric array, or both, returns array]
  3481. mssql_fetch_array(|resource result, [int result_type])
  3482. [mssql_fetch_assoc | Returns an associative array of the current row in the result set specified by result_id, returns array]
  3483. mssql_fetch_assoc(|resource result_id)
  3484. [mssql_fetch_batch | Returns the next batch of records, returns int]
  3485. mssql_fetch_batch(|resource result_index)
  3486. [mssql_fetch_field | Get field information, returns object]
  3487. mssql_fetch_field(|resource result, [int field_offset])
  3488. [mssql_fetch_object | Fetch row as object, returns object]
  3489. mssql_fetch_object(|resource result)
  3490. [mssql_fetch_row | Get row as enumerated array, returns array]
  3491. mssql_fetch_row(|resource result)
  3492. [mssql_field_length | Get the length of a field, returns int]
  3493. mssql_field_length(|resource result, [int offset])
  3494. [mssql_field_name | Get the name of a field, returns string]
  3495. mssql_field_name(|resource result, [int offset])
  3496. [mssql_field_seek | Seeks to the specified field offset, returns bool]
  3497. mssql_field_seek(|resource result, int field_offset)
  3498. [mssql_field_type | Gets the type of a field, returns string]
  3499. mssql_field_type(|resource result, [int offset])
  3500. [mssql_free_result | Free result memory, returns bool]
  3501. mssql_free_result(|resource result)
  3502. [mssql_free_statement | Free statement memory, returns bool]
  3503. mssql_free_statement(|resource statement)
  3504. [mssql_get_last_message | Returns the last message from the server, returns string]
  3505. mssql_get_last_message()|
  3506. [mssql_guid_string | Converts a 16 byte binary GUID to a string, returns string]
  3507. mssql_guid_string(|string binary, [int short_format])
  3508. [mssql_init | Initializes a stored procedure or a remote stored procedure, returns int]
  3509. mssql_init(|string sp_name, [resource conn_id])
  3510. [mssql_min_error_severity | Sets the lower error severity, returns void]
  3511. mssql_min_error_severity(|int severity)
  3512. [mssql_min_message_severity | Sets the lower message severity, returns void]
  3513. mssql_min_message_severity(|int severity)
  3514. [mssql_next_result | Move the internal result pointer to the next result, returns bool]
  3515. mssql_next_result(|resource result_id)
  3516. [mssql_num_fields | Gets the number of fields in result, returns int]
  3517. mssql_num_fields(|resource result)
  3518. [mssql_num_rows | Gets the number of rows in result, returns int]
  3519. mssql_num_rows(|resource result)
  3520. [mssql_pconnect | Open persistent MS SQL connection, returns int]
  3521. mssql_pconnect(|[string servername], [string username], [string password])
  3522. [mssql_query | Send MS SQL query, returns resource]
  3523. mssql_query(|string query, [resource link_identifier], [int batch_size])
  3524. [mssql_result | Get result data, returns string]
  3525. mssql_result(|resource result, int row, mixed field)
  3526. [mssql_rows_affected | Returns the number of records affected by the query, returns int]
  3527. mssql_rows_affected(|resource conn_id)
  3528. [mssql_select_db | Select MS SQL database, returns bool]
  3529. mssql_select_db(|string database_name, [resource link_identifier])
  3530. ; -----------------------------------------------------------------------------
  3531. ; Ming (flash) - Ming functions for Flash
  3532. ; -----------------------------------------------------------------------------
  3533. [ming_setcubicthreshold | Set cubic threshold (?), returns void]
  3534. ming_setcubicthreshold(|int threshold)
  3535. [ming_setscale | Set scale (?), returns void]
  3536. ming_setscale(|int scale)
  3537. [ming_useswfversion | Use SWF version (?), returns void]
  3538. ming_useswfversion(|int version)
  3539. [SWFAction | Creates a new Action., returns new]
  3540. swfaction(|string script)
  3541. [SWFBitmap->getHeight | Returns the bitmap's height., returns int]
  3542. swfbitmap->getheight()|
  3543. [SWFBitmap->getWidth | Returns the bitmap's width., returns int]
  3544. swfbitmap->getwidth()|
  3545. [SWFBitmap | Loads Bitmap object, returns new]
  3546. swfbitmap(|string filename, [int alphafilename])
  3547. [swfbutton_keypress | Returns the action flag for keyPress(char), returns int]
  3548. swfbutton_keypress(|string str)
  3549. [SWFbutton->addAction | Adds an action, returns void]
  3550. swfbutton->addaction(|resource action, int flags)
  3551. [SWFbutton->addShape | Adds a shape to a button, returns void]
  3552. swfbutton->addshape(|resource shape, int flags)
  3553. [SWFbutton->setAction | Sets the action, returns void]
  3554. swfbutton->setaction(|resource action)
  3555. [SWFbutton->setdown | Alias for addShape(shape, SWFBUTTON_DOWN)), returns void]
  3556. swfbutton->setdown(|resource shape)
  3557. [SWFbutton->setHit | Alias for addShape(shape, SWFBUTTON_HIT), returns void]
  3558. swfbutton->sethit(|resource shape)
  3559. [SWFbutton->setOver | Alias for addShape(shape, SWFBUTTON_OVER), returns void]
  3560. swfbutton->setover(|resource shape)
  3561. [SWFbutton->setUp | Alias for addShape(shape, SWFBUTTON_UP), returns void]
  3562. swfbutton->setup(|resource shape)
  3563. [SWFbutton | Creates a new Button., returns new]
  3564. swfbutton()|
  3565. [SWFDisplayItem->addColor | Adds the given color to this item's color transform., returns void]
  3566. swfdisplayitem->addcolor(|[int red], [int green], [int blue], [int a])
  3567. [SWFDisplayItem->move | Moves object in relative coordinates., returns void]
  3568. swfdisplayitem->move(|int dx, int dy)
  3569. [SWFDisplayItem->moveTo | Moves object in global coordinates., returns void]
  3570. swfdisplayitem->moveto(|int x, int y)
  3571. [SWFDisplayItem->multColor | Multiplies the item's color transform., returns void]
  3572. swfdisplayitem->multcolor(|[int red], [int green], [int blue], [int a])
  3573. [SWFDisplayItem->remove | Removes the object from the movie, returns void]
  3574. swfdisplayitem->remove()|
  3575. [SWFDisplayItem->Rotate | Rotates in relative coordinates., returns void]
  3576. swfdisplayitem->rotate(|float ddegrees)
  3577. [SWFDisplayItem->rotateTo | Rotates the object in global coordinates., returns void]
  3578. swfdisplayitem->rotateto(|float degrees)
  3579. [SWFDisplayItem->scale | Scales the object in relative coordinates., returns void]
  3580. swfdisplayitem->scale(|int dx, int dy)
  3581. [SWFDisplayItem->scaleTo | Scales the object in global coordinates., returns void]
  3582. swfdisplayitem->scaleto(|int x, int y)
  3583. [SWFDisplayItem->setDepth | Sets z-order, returns void]
  3584. swfdisplayitem->setdepth(|float depth)
  3585. [SWFDisplayItem->setName | Sets the object's name, returns void]
  3586. swfdisplayitem->setname(|string name)
  3587. [SWFDisplayItem->setRatio | Sets the object's ratio., returns void]
  3588. swfdisplayitem->setratio(|float ratio)
  3589. [SWFDisplayItem->skewX | Sets the X-skew., returns void]
  3590. swfdisplayitem->skewx(|float ddegrees)
  3591. [SWFDisplayItem->skewXTo | Sets the X-skew., returns void]
  3592. swfdisplayitem->skewxto(|float degrees)
  3593. [SWFDisplayItem->skewY | Sets the Y-skew., returns void]
  3594. swfdisplayitem->skewy(|float ddegrees)
  3595. [SWFDisplayItem->skewYTo | Sets the Y-skew., returns void]
  3596. swfdisplayitem->skewyto(|float degrees)
  3597. [SWFDisplayItem | Creates a new displayitem object., returns new]
  3598. swfdisplayitem()|
  3599. [SWFFill->moveTo | Moves fill origin, returns void]
  3600. swffill->moveto(|int x, int y)
  3601. [SWFFill->rotateTo | Sets fill's rotation, returns void]
  3602. swffill->rotateto(|float degrees)
  3603. [SWFFill->scaleTo | Sets fill's scale, returns void]
  3604. swffill->scaleto(|int x, int y)
  3605. [SWFFill->skewXTo | Sets fill x-skew, returns void]
  3606. swffill->skewxto(|float x)
  3607. [SWFFill->skewYTo | Sets fill y-skew, returns void]
  3608. swffill->skewyto(|float y)
  3609. [SWFFill | Loads SWFFill object, returns new]
  3610. SWFFill()|
  3611. [swffont->getwidth | Returns the string's width, returns int]
  3612. swffont->getwidth(|string string)
  3613. [SWFFont | Loads a font definition, returns new]
  3614. swffont(|string filename)
  3615. [SWFGradient->addEntry | Adds an entry to the gradient list., returns void]
  3616. swfgradient->addentry(|float ratio, int red, int green, int blue, [int a])
  3617. [SWFGradient | Creates a gradient object, returns new]
  3618. swfgradient()|
  3619. [SWFMorph->getshape1 | Gets a handle to the starting shape, returns mixed]
  3620. swfmorph->getshape1()|
  3621. [SWFMorph->getshape2 | Gets a handle to the ending shape, returns mixed]
  3622. swfmorph->getshape2()|
  3623. [SWFMorph | Creates a new SWFMorph object., returns new]
  3624. swfmorph()|
  3625. [SWFMovie->add | Adds any type of data to a movie., returns void]
  3626. swfmovie->add(|resource instance)
  3627. [SWFMovie->nextframe | Moves to the next frame of the animation., returns void]
  3628. swfmovie->nextframe()|
  3629. [SWFMovie->output | Dumps your lovingly prepared movie out., returns void]
  3630. swfmovie->output()|
  3631. [swfmovie->remove | Removes the object instance from the display list., returns void]
  3632. swfmovie->remove(|resource instance)
  3633. [SWFMovie->save | Saves your movie in a file., returns void]
  3634. swfmovie->save(|string filename)
  3635. [SWFMovie->setbackground | Sets the background color., returns void]
  3636. swfmovie->setbackground(|int red, int green, int blue)
  3637. [SWFMovie->setdimension | Sets the movie's width and height., returns void]
  3638. swfmovie->setdimension(|int width, int height)
  3639. [SWFMovie->setframes | Sets the total number of frames in the animation., returns void]
  3640. swfmovie->setframes(|string numberofframes)
  3641. [SWFMovie->setrate | Sets the animation's frame rate., returns void]
  3642. swfmovie->setrate(|int rate)
  3643. [SWFMovie->streammp3 | Streams a MP3 file., returns void]
  3644. swfmovie->streammp3(|string mp3FileName)
  3645. [SWFMovie | Creates a new movie object, representing an SWF version 4 movie., returns new]
  3646. swfmovie()|
  3647. [SWFShape->addFill | Adds a solid fill to the shape., returns void]
  3648. swfshape->addfill(|int red, int green, int blue, [int a])
  3649. [SWFShape->drawCurve | Draws a curve (relative)., returns void]
  3650. swfshape->drawcurve(|int controldx, int controldy, int anchordx, int anchordy)
  3651. [SWFShape->drawCurveTo | Draws a curve., returns void]
  3652. swfshape->drawcurveto(|int controlx, int controly, int anchorx, int anchory)
  3653. [SWFShape->drawLine | Draws a line (relative)., returns void]
  3654. swfshape->drawline(|int dx, int dy)
  3655. [SWFShape->drawLineTo | Draws a line., returns void]
  3656. swfshape->drawlineto(|int x, int y)
  3657. [SWFShape->movePen | Moves the shape's pen (relative)., returns void]
  3658. swfshape->movepen(|int dx, int dy)
  3659. [SWFShape->movePenTo | Moves the shape's pen., returns void]
  3660. swfshape->movepento(|int x, int y)
  3661. [SWFShape->setLeftFill | Sets left rasterizing color., returns void]
  3662. swfshape->setleftfill(|swfgradient fill)
  3663. [SWFShape->setLine | Sets the shape's line style., returns void]
  3664. swfshape->setline(|int width, [int red], [int green], [int blue], [int a])
  3665. [SWFShape->setRightFill | Sets right rasterizing color., returns void]
  3666. swfshape->setrightfill(|swfgradient fill)
  3667. [SWFShape | Creates a new shape object., returns new]
  3668. swfshape()|
  3669. [swfsprite->add | Adds an object to a sprite, returns void]
  3670. swfsprite->add(|resource object)
  3671. [SWFSprite->nextframe | Moves to the next frame of the animation., returns void]
  3672. swfsprite->nextframe()|
  3673. [SWFSprite->remove | Removes an object to a sprite, returns void]
  3674. swfsprite->remove(|resource object)
  3675. [SWFSprite->setframes | Sets the total number of frames in the animation., returns void]
  3676. swfsprite->setframes(|int numberofframes)
  3677. [SWFSprite | Creates a movie clip (a sprite), returns new]
  3678. swfsprite()|
  3679. [SWFText->addString | Draws a string, returns void]
  3680. swftext->addstring(|string string)
  3681. [SWFText->getWidth | Computes string's width, returns void]
  3682. swftext->getwidth(|string string)
  3683. [SWFText->moveTo | Moves the pen, returns void]
  3684. swftext->moveto(|int x, int y)
  3685. [SWFText->setColor | Sets the current font color, returns void]
  3686. swftext->setcolor(|int red, int green, int blue, [int a])
  3687. [SWFText->setFont | Sets the current font, returns void]
  3688. swftext->setfont(|string font)
  3689. [SWFText->setHeight | Sets the current font height, returns void]
  3690. swftext->setheight(|int height)
  3691. [SWFText->setSpacing | Sets the current font spacing, returns void]
  3692. swftext->setspacing(|float spacing)
  3693. [SWFText | Creates a new SWFText object., returns new]
  3694. swftext()|
  3695. [SWFTextField->addstring | Concatenates the given string to the text field, returns void]
  3696. swftextfield->addstring(|string string)
  3697. [SWFTextField->align | Sets the text field alignment, returns void]
  3698. swftextfield->align(|int alignement)
  3699. [SWFTextField->setbounds | Sets the text field width and height, returns void]
  3700. swftextfield->setbounds(|int width, int height)
  3701. [SWFTextField->setcolor | Sets the color of the text field., returns void]
  3702. swftextfield->setcolor(|int red, int green, int blue, [int a])
  3703. [SWFTextField->setFont | Sets the text field font, returns void]
  3704. swftextfield->setfont(|string font)
  3705. [SWFTextField->setHeight | Sets the font height of this text field font., returns void]
  3706. swftextfield->setheight(|int height)
  3707. [SWFTextField->setindentation | Sets the indentation of the first line., returns void]
  3708. swftextfield->setindentation(|int width)
  3709. [SWFTextField->setLeftMargin | Sets the left margin width of the text field., returns void]
  3710. swftextfield->setleftmargin(|int width)
  3711. [SWFTextField->setLineSpacing | Sets the line spacing of the text field., returns void]
  3712. swftextfield->setlinespacing(|int height)
  3713. [SWFTextField->setMargins | Sets the margins width of the text field., returns void]
  3714. swftextfield->setmargins(|int left, int right)
  3715. [SWFTextField->setname | Sets the variable name, returns void]
  3716. swftextfield->setname(|string name)
  3717. [SWFTextField->setrightMargin | Sets the right margin width of the text field., returns void]
  3718. swftextfield->setrightmargin(|int width)
  3719. [SWFTextField | Creates a text field object, returns new]
  3720. swftextfield(|[int flags])
  3721. ; -----------------------------------------------------------------------------
  3722. ; Misc. - Miscellaneous functions
  3723. ; -----------------------------------------------------------------------------
  3724. [connection_aborted | Returns TRUE if client disconnected, returns int]
  3725. connection_aborted()|
  3726. [connection_status | Returns connection status bitfield, returns int]
  3727. connection_status()|
  3728. [connection_timeout | Return TRUE if script timed out, returns bool]
  3729. connection_timeout()|
  3730. [constant | Returns the value of a constant, returns mixed]
  3731. constant(|string name)
  3732. [define | Defines a named constant., returns bool]
  3733. define(|string name, mixed value, [bool case_insensitive])
  3734. [defined | Checks whether a given named constant exists, returns bool]
  3735. defined(|string name)
  3736. [die | Alias of exit]
  3737. [eval | Evaluate a string as PHP code, returns mixed]
  3738. eval(|string code_str)
  3739. [exit | Output a message and terminate the current script, returns void]
  3740. exit(|[string status])
  3741. [get_browser | Tells what the user's browser is capable of, returns object]
  3742. get_browser(|[string user_agent])
  3743. [highlight_file | Syntax highlighting of a file, returns mixed]
  3744. highlight_file(|string filename, [bool return])
  3745. [highlight_string | Syntax highlighting of a string, returns mixed]
  3746. highlight_string(|string str, [bool return])
  3747. [ignore_user_abort | Set whether a client disconnect should abort script execution, returns int]
  3748. ignore_user_abort(|[bool setting])
  3749. [pack | Pack data into binary string., returns string]
  3750. pack(|string format, [mixed args])
  3751. [show_source | Alias of highlight_file]
  3752. [sleep | Delay execution, returns void]
  3753. sleep(|int seconds)
  3754. [uniqid | Generate a unique ID, returns string]
  3755. uniqid(|string prefix, [bool lcg])
  3756. [unpack | Unpack data from binary string, returns array]
  3757. unpack(|string format, string data)
  3758. [usleep | Delay execution in microseconds, returns void]
  3759. usleep(|int micro_seconds)
  3760. ; -----------------------------------------------------------------------------
  3761. ; mnoGoSearch - mnoGoSearch Functions
  3762. ; -----------------------------------------------------------------------------
  3763. [udm_add_search_limit | Add various search limits, returns bool]
  3764. udm_add_search_limit(|resource agent, int var, string val)
  3765. [udm_alloc_agent | Allocate mnoGoSearch session, returns resource]
  3766. udm_alloc_agent(|string dbaddr, [string dbmode])
  3767. [udm_api_version | Get mnoGoSearch API version., returns int]
  3768. udm_api_version()|
  3769. [udm_cat_list | Get all the categories on the same level with the current one., returns array]
  3770. udm_cat_list(|resource agent, string category)
  3771. [udm_cat_path | Get the path to the current category., returns array]
  3772. udm_cat_path(|resource agent, string category)
  3773. [udm_check_charset | Check if the given charset is known to mnogosearch, returns bool]
  3774. udm_check_charset(|resource agent, string charset)
  3775. [udm_check_stored | Check connection to stored, returns int]
  3776. udm_check_stored(|resource agent, int link, string doc_id)
  3777. [udm_clear_search_limits | Clear all mnoGoSearch search restrictions, returns bool]
  3778. udm_clear_search_limits(|resource agent)
  3779. [udm_close_stored | Close connection to stored, returns int]
  3780. udm_close_stored(|resource agent, int link)
  3781. [udm_crc32 | Return CRC32 checksum of gived string, returns int]
  3782. udm_crc32(|resource agent, string str)
  3783. [udm_errno | Get mnoGoSearch error number, returns int]
  3784. udm_errno(|resource agent)
  3785. [udm_error | Get mnoGoSearch error message, returns string]
  3786. udm_error(|resource agent)
  3787. [udm_find | Perform search, returns resource]
  3788. udm_find(|resource agent, string query)
  3789. [udm_free_agent | Free mnoGoSearch session, returns int]
  3790. udm_free_agent(|resource agent)
  3791. [udm_free_ispell_data | Free memory allocated for ispell data, returns bool]
  3792. udm_free_ispell_data(|int agent)
  3793. [udm_free_res | Free mnoGoSearch result, returns bool]
  3794. udm_free_res(|resource res)
  3795. [udm_get_doc_count | Get total number of documents in database., returns int]
  3796. udm_get_doc_count(|resource agent)
  3797. [udm_get_res_field | Fetch mnoGoSearch result field, returns string]
  3798. udm_get_res_field(|resource res, int row, int field)
  3799. [udm_get_res_param | Get mnoGoSearch result parameters, returns string]
  3800. udm_get_res_param(|resource res, int param)
  3801. [udm_load_ispell_data | Load ispell data, returns bool]
  3802. udm_load_ispell_data(|resource agent, int var, string val1, string val2, int flag)
  3803. [udm_open_stored | Open connection to stored, returns int]
  3804. udm_open_stored(|resource agent, string storedaddr)
  3805. [udm_set_agent_param | Set mnoGoSearch agent session parameters, returns bool]
  3806. udm_set_agent_param(|resource agent, int var, string val)
  3807. ; -----------------------------------------------------------------------------
  3808. ; mSQL - mSQL functions
  3809. ; -----------------------------------------------------------------------------
  3810. [msql_affected_rows | Returns number of affected rows, returns int]
  3811. msql_affected_rows(|int query_identifier)
  3812. [msql_close | Close mSQL connection, returns int]
  3813. msql_close(|int link_identifier)
  3814. [msql_connect | Open mSQL connection, returns int]
  3815. msql_connect(|[string hostname], [string server], [string username], [string password])
  3816. [msql_create_db | Create mSQL database, returns int]
  3817. msql_create_db(|string database_name, [int link_identifier])
  3818. [msql_createdb | Create mSQL database, returns int]
  3819. msql_createdb(|string database_name, [int link_identifier])
  3820. [msql_data_seek | Move internal row pointer, returns int]
  3821. msql_data_seek(|int query_identifier, int row_number)
  3822. [msql_dbname | Get current mSQL database name, returns string]
  3823. msql_dbname(|int query_identifier, int i)
  3824. [msql_drop_db | Drop (delete) mSQL database, returns int]
  3825. msql_drop_db(|string database_name, int link_identifier)
  3826. [msql_dropdb | Drop (delete) mSQL database]
  3827. [msql_error | Returns error message of last msql call, returns string]
  3828. msql_error(|[int link_identifier])
  3829. [msql_fetch_array | Fetch row as array, returns int]
  3830. msql_fetch_array(|int query_identifier, [int result_type])
  3831. [msql_fetch_field | Get field information, returns object]
  3832. msql_fetch_field(|int query_identifier, int field_offset)
  3833. [msql_fetch_object | Fetch row as object, returns int]
  3834. msql_fetch_object(|int query_identifier, [int result_type])
  3835. [msql_fetch_row | Get row as enumerated array, returns array]
  3836. msql_fetch_row(|int query_identifier)
  3837. [msql_field_seek | Set field offset, returns int]
  3838. msql_field_seek(|int query_identifier, int field_offset)
  3839. [msql_fieldflags | Get field flags, returns string]
  3840. msql_fieldflags(|int query_identifier, int i)
  3841. [msql_fieldlen | Get field length, returns int]
  3842. msql_fieldlen(|int query_identifier, int i)
  3843. [msql_fieldname | Get field name, returns string]
  3844. msql_fieldname(|int query_identifier, int field)
  3845. [msql_fieldtable | Get table name for field, returns int]
  3846. msql_fieldtable(|int query_identifier, int field)
  3847. [msql_fieldtype | Get field type, returns string]
  3848. msql_fieldtype(|int query_identifier, int i)
  3849. [msql_free_result | Free result memory, returns int]
  3850. msql_free_result(|int query_identifier)
  3851. [msql_freeresult | Free result memory]
  3852. [msql_list_dbs | List mSQL databases on server, returns int]
  3853. msql_list_dbs()|
  3854. [msql_list_fields | List result fields, returns int]
  3855. msql_list_fields(|string database, string tablename)
  3856. [msql_list_tables | List tables in an mSQL database, returns int]
  3857. msql_list_tables(|string database)
  3858. [msql_listdbs | List mSQL databases on server]
  3859. [msql_listfields | List result fields]
  3860. [msql_listtables | List tables in an mSQL database]
  3861. [msql_num_fields | Get number of fields in result, returns int]
  3862. msql_num_fields(|int query_identifier)
  3863. [msql_num_rows | Get number of rows in result, returns int]
  3864. msql_num_rows(|resource query_identifier)
  3865. [msql_numfields | Get number of fields in result, returns int]
  3866. msql_numfields(|int query_identifier)
  3867. [msql_numrows | Get number of rows in result, returns int]
  3868. msql_numrows()|
  3869. [msql_pconnect | Open persistent mSQL connection, returns int]
  3870. msql_pconnect(|[string server], [string username], [string password])
  3871. [msql_query | Send mSQL query, returns int]
  3872. msql_query(|string query, int link_identifier)
  3873. [msql_regcase | Make regular expression for case insensitive match]
  3874. [msql_result | Get result data, returns int]
  3875. msql_result(|int query_identifier, int i, mixed field)
  3876. [msql_select_db | Select mSQL database, returns int]
  3877. msql_select_db(|string database_name, int link_identifier)
  3878. [msql_selectdb | Select mSQL database]
  3879. [msql_tablename | Get table name of field, returns string]
  3880. msql_tablename(|int query_identifier, int field)
  3881. [msql | Send mSQL query, returns int]
  3882. msql(|string database, string query, int link_identifier)
  3883. ; -----------------------------------------------------------------------------
  3884. ; MySQL - MySQL Functions
  3885. ; -----------------------------------------------------------------------------
  3886. [mysql_affected_rows | Get number of affected rows in previous MySQL operation, returns int]
  3887. mysql_affected_rows(|[resource link_identifier])
  3888. [mysql_change_user | Change logged in user of the active connection, returns int]
  3889. mysql_change_user(|string user, string password, [string database], [resource link_identifier])
  3890. [mysql_client_encoding | Returns the name of the character set, returns int]
  3891. mysql_client_encoding(|[resource link_identifier])
  3892. [mysql_close | Close MySQL connection, returns bool]
  3893. mysql_close(|[resource link_identifier])
  3894. [mysql_connect | Open a connection to a MySQL Server, returns resource]
  3895. mysql_connect(|[string server], [string username], [string password], [bool new_link], [int client_flags])
  3896. [mysql_create_db | Create a MySQL database, returns bool]
  3897. mysql_create_db(|string database_name, [resource link_identifier])
  3898. [mysql_data_seek | Move internal result pointer, returns bool]
  3899. mysql_data_seek(|resource result_identifier, int row_number)
  3900. [mysql_db_name | Get result data, returns string]
  3901. mysql_db_name(|resource result, int row, [mixed field])
  3902. [mysql_db_query | Send a MySQL query, returns resource]
  3903. mysql_db_query(|string database, string query, [resource link_identifier])
  3904. [mysql_drop_db | Drop (delete) a MySQL database, returns bool]
  3905. mysql_drop_db(|string database_name, [resource link_identifier])
  3906. [mysql_errno | Returns the numerical value of the error message from previous MySQL operation, returns int]
  3907. mysql_errno(|[resource link_identifier])
  3908. [mysql_error | Returns the text of the error message from previous MySQL operation, returns string]
  3909. mysql_error(|[resource link_identifier])
  3910. [mysql_escape_string | Escapes a string for use in a mysql_query., returns string]
  3911. mysql_escape_string(|string unescaped_string)
  3912. [mysql_fetch_array | Fetch a result row as an associative array, a numeric array, or both., returns array]
  3913. mysql_fetch_array(|resource result, [int result_type])
  3914. [mysql_fetch_assoc | Fetch a result row as an associative array, returns array]
  3915. mysql_fetch_assoc(|resource result)
  3916. [mysql_fetch_field | Get column information from a result and return as an object, returns object]
  3917. mysql_fetch_field(|resource result, [int field_offset])
  3918. [mysql_fetch_lengths | Get the length of each output in a result, returns array]
  3919. mysql_fetch_lengths(|resource result)
  3920. [mysql_fetch_object | Fetch a result row as an object, returns object]
  3921. mysql_fetch_object(|resource result)
  3922. [mysql_fetch_row | Get a result row as an enumerated array, returns array]
  3923. mysql_fetch_row(|resource result)
  3924. [mysql_field_flags | Get the flags associated with the specified field in a result, returns string]
  3925. mysql_field_flags(|resource result, int field_offset)
  3926. [mysql_field_len | Returns the length of the specified field, returns int]
  3927. mysql_field_len(|resource result, int field_offset)
  3928. [mysql_field_name | Get the name of the specified field in a result, returns string]
  3929. mysql_field_name(|resource result, int field_index)
  3930. [mysql_field_seek | Set result pointer to a specified field offset, returns int]
  3931. mysql_field_seek(|resource result, int field_offset)
  3932. [mysql_field_table | Get name of the table the specified field is in, returns string]
  3933. mysql_field_table(|resource result, int field_offset)
  3934. [mysql_field_type | Get the type of the specified field in a result, returns string]
  3935. mysql_field_type(|resource result, int field_offset)
  3936. [mysql_free_result | Free result memory, returns bool]
  3937. mysql_free_result(|resource result)
  3938. [mysql_get_client_info | Get MySQL client info, returns string]
  3939. mysql_get_client_info()|
  3940. [mysql_get_host_info | Get MySQL host info, returns string]
  3941. mysql_get_host_info(|[resource link_identifier])
  3942. [mysql_get_proto_info | Get MySQL protocol info, returns int]
  3943. mysql_get_proto_info(|[resource link_identifier])
  3944. [mysql_get_server_info | Get MySQL server info, returns string]
  3945. mysql_get_server_info(|[resource link_identifier])
  3946. [mysql_info | Get information about the most recent query, returns string]
  3947. mysql_info(|[resource link_identifier])
  3948. [mysql_insert_id | Get the ID generated from the previous INSERT operation, returns int]
  3949. mysql_insert_id(|[resource link_identifier])
  3950. [mysql_list_dbs | List databases available on a MySQL server, returns resource]
  3951. mysql_list_dbs(|[resource link_identifier])
  3952. [mysql_list_fields | List MySQL table fields, returns resource]
  3953. mysql_list_fields(|string database_name, string table_name, [resource link_identifier])
  3954. [mysql_list_processes | List MySQL processes, returns resource]
  3955. mysql_list_processes(|[resource link_identifier])
  3956. [mysql_list_tables | List tables in a MySQL database, returns resource]
  3957. mysql_list_tables(|string database, [resource link_identifier])
  3958. [mysql_num_fields | Get number of fields in result, returns int]
  3959. mysql_num_fields(|resource result)
  3960. [mysql_num_rows | Get number of rows in result, returns int]
  3961. mysql_num_rows(|resource result)
  3962. [mysql_pconnect | Open a persistent connection to a MySQL server, returns resource]
  3963. mysql_pconnect(|[string server], [string username], [string password], [int client_flags])
  3964. [mysql_ping | Ping a server connection or reconnect if there is no connection, returns bool]
  3965. mysql_ping(|[resource link_identifier])
  3966. [mysql_query | Send a MySQL query, returns resource]
  3967. mysql_query(|string query, [resource link_identifier])
  3968. [mysql_real_escape_string | Escapes special characters in a string for use in a SQL statement, taking into account the current charset of the connection., returns string]
  3969. mysql_real_escape_string(|string unescaped_string, [resource link_identifier])
  3970. [mysql_result | Get result data, returns mixed]
  3971. mysql_result(|resource result, int row, [mixed field])
  3972. [mysql_select_db | Select a MySQL database, returns bool]
  3973. mysql_select_db(|string database_name, [resource link_identifier])
  3974. [mysql_stat | Get current system status, returns string]
  3975. mysql_stat(|[resource link_identifier])
  3976. [mysql_tablename | Get table name of field, returns string]
  3977. mysql_tablename(|resource result, int i)
  3978. [mysql_thread_id | Return the current thread ID, returns int]
  3979. mysql_thread_id(|[resource link_identifier])
  3980. [mysql_unbuffered_query | Send an SQL query to MySQL, without fetching and buffering the result rows, returns resource]
  3981. mysql_unbuffered_query(|string query, [resource link_identifier])
  3982. ; -----------------------------------------------------------------------------
  3983. ; mysqli - Improved MySQL Extension
  3984. ; -----------------------------------------------------------------------------
  3985. [mysqli_affected_rows | Gets the number of affected rows in a previous MySQL operation, returns mixed]
  3986. mysqli_affected_rows(|object link)
  3987. [mysqli_autocommit | Turns on or off auto-commiting database modifications, returns bool]
  3988. mysqli_autocommit(|object link, bool mode)
  3989. [mysqli_bind_param | Binds variables to a prepared statement as parameters, returns bool]
  3990. mysqli_bind_param(|object stmt, array types, mixed var1, [mixed var2, ...])
  3991. [mysqli_bind_result | Binds variables to a prepared statement for result storage, returns bool]
  3992. mysqli_bind_result(|resource stmt, mixed var, int len)
  3993. [mysqli_change_user | Changes the user of the specified database connection, returns bool]
  3994. mysqli_change_user(|resource link, string user, string password, string database)
  3995. [mysqli_character_set_name | Returns the default character set for the database connection, returns string]
  3996. mysqli_character_set_name(|resource link)
  3997. [mysqli_close | Closes a previously opened database connection, returns bool]
  3998. mysqli_close(|resource link)
  3999. [mysqli_commit | Commits the current transaction, returns bool]
  4000. mysqli_commit(|resource link)
  4001. [mysqli_connect | Open a new connection to the MySQL server, returns resource]
  4002. mysqli_connect(|[string hostname], [string username], [string passwd], [string dbname], [int port], [string socket])
  4003. [mysqli_data_seek | Adjusts the result pointer to an arbitary row in the result, returns void]
  4004. mysqli_data_seek(|resource result, int offset)
  4005. [mysqli_debug | Performs debugging operations, returns void]
  4006. mysqli_debug(|string debug)
  4007. [mysqli_disable_reads_from_master | , returns void]
  4008. mysqli_disable_reads_from_master(|resource link)
  4009. [mysqli_disable_rpl_parse | , returns void]
  4010. mysqli_disable_rpl_parse(|resource link)
  4011. [mysqli_dump_debug_info | Dump debugging information into the log, returns bool]
  4012. mysqli_dump_debug_info(|resource link)
  4013. [mysqli_enable_reads_from_master | , returns void]
  4014. mysqli_enable_reads_from_master(|resource link)
  4015. [mysqli_enable_rpl_parse | , returns void]
  4016. mysqli_enable_rpl_parse(|resource link)
  4017. [mysqli_errno | Returns the error code for the most recent function call, returns int]
  4018. mysqli_errno(|resource link)
  4019. [mysqli_error | Returns a string description of the last error, returns string]
  4020. mysqli_error(|resource link)
  4021. [mysqli_execute | Executes a prepared Query, returns int]
  4022. mysqli_execute(|resource stmt)
  4023. [mysqli_fetch_array | Fetch a result row as an associative, a numeric array, or both., returns array]
  4024. mysqli_fetch_array(|resource result, [int resulttype])
  4025. [mysqli_fetch_assoc | Fetch a result row as an associative array, returns array]
  4026. mysqli_fetch_assoc(|resource result)
  4027. [mysqli_fetch_field_direct | Fetch meta-data for a single field, returns int]
  4028. mysqli_fetch_field_direct(|resource result, int offset)
  4029. [mysqli_fetch_field | Returns the next field in the result set, returns object]
  4030. mysqli_fetch_field(|resource result)
  4031. [mysqli_fetch_fields | Returns an array of objects representing the fields in a result set, returns array]
  4032. mysqli_fetch_fields(|resource result)
  4033. [mysqli_fetch_lengths | Returns the lengths of the columns of the current row in the result set, returns array]
  4034. mysqli_fetch_lengths(|resource result)
  4035. [mysqli_fetch_object | Returns the current row of a result set as an object, returns object]
  4036. mysqli_fetch_object(|resource result)
  4037. [mysqli_fetch_row | Get a result row as an enumerated array, returns array]
  4038. mysqli_fetch_row(|resource result)
  4039. [mysqli_fetch | Fetch results from a prepared statement into the bound variables, returns int]
  4040. mysqli_fetch(|resource stmt)
  4041. [mysqli_field_count | Returns the number of columns for the most recent query, returns int]
  4042. mysqli_field_count(|resource link)
  4043. [mysqli_field_seek | Set result pointer to a specified field offset, returns int]
  4044. mysqli_field_seek(|resource link, int fieldnr)
  4045. [mysqli_field_tell | Get current field offset of a result pointer, returns int]
  4046. mysqli_field_tell(|resource result)
  4047. [mysqli_free_result | Frees the memory associated with a result, returns int]
  4048. mysqli_free_result(|resource result)
  4049. [mysqli_get_client_info | Returns the MySQL client version as a string, returns string]
  4050. mysqli_get_client_info(|void )
  4051. [mysqli_get_host_info | Returns a string representing the type of connection used, returns string]
  4052. mysqli_get_host_info(|resource link)
  4053. [mysqli_get_proto_info | Returns the version of the MySQL protocol used, returns int]
  4054. mysqli_get_proto_info(|resource link)
  4055. [mysqli_get_server_info | Returns the version of the MySQL server, returns string]
  4056. mysqli_get_server_info(|resource link)
  4057. [mysqli_get_server_version | Returns the version of the MySQL server as an integer, returns int]
  4058. mysqli_get_server_version(|resource link)
  4059. [mysqli_info | Retrieves information about the most recently executed query, returns string]
  4060. mysqli_info(|resource link)
  4061. [mysqli_init | Initializes MySQLi and returns a resource for use with mysqli_real_connect, returns resource]
  4062. mysqli_init()|
  4063. [mysqli_insert_id | Returns the auto generated id used in the last query, returns mixed]
  4064. mysqli_insert_id(|resource link)
  4065. [mysqli_kill | Asks the server to kill a MySQL thread, returns bool]
  4066. mysqli_kill(|resource link, int processid)
  4067. [mysqli_master_query | Enforce execution of a query on the master in a master/slave setup, returns bool]
  4068. mysqli_master_query(|resource link, string query)
  4069. [mysqli_num_fields | Get the number of fields in a result, returns int]
  4070. mysqli_num_fields(|resource result)
  4071. [mysqli_num_rows | Gets the number of rows in a result, returns int]
  4072. mysqli_num_rows(|resource result)
  4073. [mysqli_options | set options, returns bool]
  4074. mysqli_options(|resource link, int flags, mixed values)
  4075. [mysqli_param_count | Returns the number of parameter for the given statement, returns int]
  4076. mysqli_param_count(|resource stmt)
  4077. [mysqli_ping | Ping a server connection, or reconnect if there is no connection, returns int]
  4078. mysqli_ping(|resource link)
  4079. [mysqli_prepare_result | , returns resource]
  4080. mysqli_prepare_result(|resource stmt)
  4081. [mysqli_prepare | Prepare a SQL statement for execution, returns resource]
  4082. mysqli_prepare(|resource link, string query)
  4083. [mysqli_profiler | , returns bool]
  4084. mysqli_profiler(|int flags, string info, int port)
  4085. [mysqli_query | Performs a query on the database, returns resource]
  4086. mysqli_query(|resource link, string query, [int resultmode])
  4087. [mysqli_read_query_result | , returns bool]
  4088. mysqli_read_query_result(|resource link)
  4089. [mysqli_real_connect | Opens a connection to a mysql server, returns bool]
  4090. mysqli_real_connect(|resource link, [string hostname], [string username], [string passwd], [string dbname], [int port], [string socket])
  4091. [mysqli_real_escape_string | Escapes special characters in a string for use in a SQL statement, taking into account the current charset of the connection, returns string]
  4092. mysqli_real_escape_string(|resource link, string escapestr)
  4093. [mysqli_real_query | Execute an SQL query, returns bool]
  4094. mysqli_real_query(|resource link, string query)
  4095. [mysqli_reload | , returns bool]
  4096. mysqli_reload(|resource link)
  4097. [mysqli_rollback | , returns bool]
  4098. mysqli_rollback(|resource link)
  4099. [mysqli_rpl_parse_enabled | , returns int]
  4100. mysqli_rpl_parse_enabled(|resource link)
  4101. [mysqli_rpl_probe | , returns bool]
  4102. mysqli_rpl_probe(|resource link)
  4103. [mysqli_rpl_query_type | , returns int]
  4104. mysqli_rpl_query_type(|string query)
  4105. [mysqli_select_db | Selects the default database for database queries, returns bool]
  4106. mysqli_select_db(|resource link, string dbname)
  4107. [mysqli_send_long_data | , returns bool]
  4108. mysqli_send_long_data(|resource stmt, int param_nr, string data)
  4109. [mysqli_send_query | , returns bool]
  4110. mysqli_send_query(|resource link, string query)
  4111. [mysqli_slave_query | Enforces execution of a query on a slave in a master/slave setup, returns bool]
  4112. mysqli_slave_query(|resource link, string query)
  4113. [mysqli_ssl_set | , returns string]
  4114. mysqli_ssl_set(|resource link, [string key], [string cert], [string ca], [string capath], [string cipher])
  4115. [mysqli_stat | Gets the current system status, returns string]
  4116. mysqli_stat(|resource link)
  4117. [mysqli_stmt_affected_rows | , returns mixed]
  4118. mysqli_stmt_affected_rows(|object stmt)
  4119. [mysqli_stmt_close | close statement, returns bool]
  4120. mysqli_stmt_close(|resource stmt)
  4121. [mysqli_stmt_errno | , returns int]
  4122. mysqli_stmt_errno(|resource stmt)
  4123. [mysqli_stmt_error | , returns string]
  4124. mysqli_stmt_error(|resource stmt)
  4125. [mysqli_stmt_store_result | , returns resource]
  4126. mysqli_stmt_store_result(|resource stmt)
  4127. [mysqli_store_result | Transfers a result set from the last query, returns resource]
  4128. mysqli_store_result(|resource link)
  4129. [mysqli_thread_id | Returns the thread ID for the current connection, returns int]
  4130. mysqli_thread_id(|resource link)
  4131. [mysqli_thread_safe | Returns whether thread safety is given or not, returns bool]
  4132. mysqli_thread_safe(|void )
  4133. [mysqli_use_result | Initiate a result set retrieval, returns resource]
  4134. mysqli_use_result(|resource link)
  4135. [mysqli_warning_count | Returns the number of warnings from the last query for the given link, returns resource]
  4136. mysqli_warning_count(|resource link)
  4137. ; -----------------------------------------------------------------------------
  4138. ; Msession - Mohawk Software session handler functions
  4139. ; -----------------------------------------------------------------------------
  4140. [msession_connect | Connect to msession server, returns bool]
  4141. msession_connect(|string host, string port)
  4142. [msession_count | Get session count, returns int]
  4143. msession_count()|
  4144. [msession_create | Create a session, returns bool]
  4145. msession_create(|string session)
  4146. [msession_destroy | Destroy a session, returns bool]
  4147. msession_destroy(|string name)
  4148. [msession_disconnect | Close connection to msession server, returns void]
  4149. msession_disconnect()|
  4150. [msession_find | Find value, returns array]
  4151. msession_find(|string name, string value)
  4152. [msession_get_array | Get array of ... ?, returns array]
  4153. msession_get_array(|string session)
  4154. [msession_get | Get value from session, returns string]
  4155. msession_get(|string session, string name, string value)
  4156. [msession_getdata | Get data ... ?, returns string]
  4157. msession_getdata(|string session)
  4158. [msession_inc | Increment value in session, returns string]
  4159. msession_inc(|string session, string name)
  4160. [msession_list | List ... ?, returns array]
  4161. msession_list()|
  4162. [msession_listvar | List sessions with variable, returns array]
  4163. msession_listvar(|string name)
  4164. [msession_lock | Lock a session, returns int]
  4165. msession_lock(|string name)
  4166. [msession_plugin | Call an escape function within the msession personality plugin, returns string]
  4167. msession_plugin(|string session, string val, [string param])
  4168. [msession_randstr | Get random string, returns string]
  4169. msession_randstr(|int param)
  4170. [msession_set_array | Set array of ..., returns bool]
  4171. msession_set_array(|string session, array tuples)
  4172. [msession_set | Set value in session, returns bool]
  4173. msession_set(|string session, string name, string value)
  4174. [msession_setdata | Set data ... ?, returns bool]
  4175. msession_setdata(|string session, string value)
  4176. [msession_timeout | Set/get session timeout, returns int]
  4177. msession_timeout(|string session, [int param])
  4178. [msession_uniq | Get uniq id, returns string]
  4179. msession_uniq(|int param)
  4180. [msession_unlock | Unlock a session, returns int]
  4181. msession_unlock(|string session, int key)
  4182. ; -----------------------------------------------------------------------------
  4183. ; muscat - muscat functions
  4184. ; -----------------------------------------------------------------------------
  4185. [muscat_close | Shuts down the muscat session and releases any memory back to PHP., returns int]
  4186. muscat_close(|resource muscat_handle)
  4187. [muscat_get | Gets a line back from the core muscat API., returns string]
  4188. muscat_get(|resource muscat_handle)
  4189. [muscat_give | Sends string to the core muscat API, returns int]
  4190. muscat_give(|resource muscat_handle, string string)
  4191. [muscat_setup_net | Creates a new muscat session and returns the handle., returns resource]
  4192. muscat_setup_net(|string muscat_host, int port)
  4193. [muscat_setup | Creates a new muscat session and returns the handle., returns resource]
  4194. muscat_setup(|int size, [string muscat_dir])
  4195. ; -----------------------------------------------------------------------------
  4196. ; Network - Network Functions
  4197. ; -----------------------------------------------------------------------------
  4198. [checkdnsrr | Check DNS records corresponding to a given Internet host name or IP address, returns int]
  4199. checkdnsrr(|string host, [string type])
  4200. [closelog | Close connection to system logger, returns int]
  4201. closelog()|
  4202. [debugger_off | Disable internal PHP debugger (PHP 3), returns int]
  4203. debugger_off()|
  4204. [debugger_on | Enable internal PHP debugger (PHP 3), returns int]
  4205. debugger_on(|string address)
  4206. [define_syslog_variables | Initializes all syslog related constants, returns void]
  4207. define_syslog_variables()|
  4208. [dns_check_record | Synonym for checkdnsrr, returns int]
  4209. dns_check_record(|string host, [string type])
  4210. [dns_get_mx | Synonym for getmxrr, returns int]
  4211. dns_get_mx(|string hostname, array mxhosts, [array &weight])
  4212. [dns_get_record | Fetch DNS Resource Records associated with a hostname, returns array]
  4213. dns_get_record(|string hostname, [int type], [array &authns], array &addtl)
  4214. [fsockopen | Open Internet or Unix domain socket connection, returns int]
  4215. fsockopen(|string target, int port, [int errno], [string errstr], [float timeout])
  4216. [gethostbyaddr | Get the Internet host name corresponding to a given IP address, returns string]
  4217. gethostbyaddr(|string ip_address)
  4218. [gethostbyname | Get the IP address corresponding to a given Internet host name, returns string]
  4219. gethostbyname(|string hostname)
  4220. [gethostbynamel | Get a list of IP addresses corresponding to a given Internet host name, returns array]
  4221. gethostbynamel(|string hostname)
  4222. [getmxrr | Get MX records corresponding to a given Internet host name, returns int]
  4223. getmxrr(|string hostname, array mxhosts, [array weight])
  4224. [getprotobyname | Get protocol number associated with protocol name, returns int]
  4225. getprotobyname(|string name)
  4226. [getprotobynumber | Get protocol name associated with protocol number, returns string]
  4227. getprotobynumber(|int number)
  4228. [getservbyname | Get port number associated with an Internet service and protocol, returns int]
  4229. getservbyname(|string service, string protocol)
  4230. [getservbyport | Get Internet service which corresponds to port and protocol, returns string]
  4231. getservbyport(|int port, string protocol)
  4232. [ip2long | Converts a string containing an (IPv4) Internet Protocol dotted address into a proper address., returns int]
  4233. ip2long(|string ip_address)
  4234. [long2ip | Converts an (IPv4) Internet network address into a string in Internet standard dotted format, returns string]
  4235. long2ip(|int proper_address)
  4236. [openlog | Open connection to system logger, returns int]
  4237. openlog(|string ident, int option, int facility)
  4238. [pfsockopen | Open persistent Internet or Unix domain socket connection, returns int]
  4239. pfsockopen(|string hostname, int port, [int errno], [string errstr], [int timeout])
  4240. [socket_get_status | Alias of stream_get_meta_data.]
  4241. [socket_set_blocking | Alias for stream_set_blocking]
  4242. [socket_set_timeout | Alias for stream_set_timeout]
  4243. [syslog | Generate a system log message, returns int]
  4244. syslog(|int priority, string message)
  4245. ; -----------------------------------------------------------------------------
  4246. ; Ncurses - Ncurses terminal screen control functions
  4247. ; -----------------------------------------------------------------------------
  4248. [ncurses_addch | Add character at current position and advance cursor, returns int]
  4249. ncurses_addch(|int ch)
  4250. [ncurses_addchnstr | Add attributed string with specified length at current position, returns int]
  4251. ncurses_addchnstr(|string s, int n)
  4252. [ncurses_addchstr | Add attributed string at current position, returns int]
  4253. ncurses_addchstr(|string s)
  4254. [ncurses_addnstr | Add string with specified length at current position, returns int]
  4255. ncurses_addnstr(|string s, int n)
  4256. [ncurses_addstr | Output text at current position, returns int]
  4257. ncurses_addstr(|string text)
  4258. [ncurses_assume_default_colors | Define default colors for color 0, returns int]
  4259. ncurses_assume_default_colors(|int fg, int bg)
  4260. [ncurses_attroff | Turn off the given attributes, returns int]
  4261. ncurses_attroff(|int attributes)
  4262. [ncurses_attron | Turn on the given attributes, returns int]
  4263. ncurses_attron(|int attributes)
  4264. [ncurses_attrset | Set given attributes, returns int]
  4265. ncurses_attrset(|int attributes)
  4266. [ncurses_baudrate | Returns baudrate of terminal, returns int]
  4267. ncurses_baudrate()|
  4268. [ncurses_beep | Let the terminal beep, returns int]
  4269. ncurses_beep()|
  4270. [ncurses_bkgd | Set background property for terminal screen, returns int]
  4271. ncurses_bkgd(|int attrchar)
  4272. [ncurses_bkgdset | Control screen background, returns void]
  4273. ncurses_bkgdset(|int attrchar)
  4274. [ncurses_border | Draw a border around the screen using attributed characters, returns int]
  4275. ncurses_border(|int left, int right, int top, int bottom, int tl_corner, int tr_corner, int bl_corner, int br_corner)
  4276. [ncurses_bottom_panel | Moves a visible panel to the bottom of the stack, returns int]
  4277. ncurses_bottom_panel(|resource panel)
  4278. [ncurses_can_change_color | Check if we can change terminals colors, returns bool]
  4279. ncurses_can_change_color()|
  4280. [ncurses_cbreak | Switch of input buffering, returns bool]
  4281. ncurses_cbreak()|
  4282. [ncurses_clear | Clear screen, returns bool]
  4283. ncurses_clear()|
  4284. [ncurses_clrtobot | Clear screen from current position to bottom, returns bool]
  4285. ncurses_clrtobot()|
  4286. [ncurses_clrtoeol | Clear screen from current position to end of line, returns bool]
  4287. ncurses_clrtoeol()|
  4288. [ncurses_color_content | Gets the RGB value for color, returns int]
  4289. ncurses_color_content(|int color, int &r, int &g, int &b)
  4290. [ncurses_color_set | Set fore- and background color, returns int]
  4291. ncurses_color_set(|int pair)
  4292. [ncurses_curs_set | Set cursor state, returns int]
  4293. ncurses_curs_set(|int visibility)
  4294. [ncurses_def_prog_mode | Saves terminals (program) mode, returns bool]
  4295. ncurses_def_prog_mode()|
  4296. [ncurses_def_shell_mode | Saves terminals (shell) mode, returns bool]
  4297. ncurses_def_shell_mode()|
  4298. [ncurses_define_key | Define a keycode, returns int]
  4299. ncurses_define_key(|string definition, int keycode)
  4300. [ncurses_del_panel | Remove panel from the stack and delete it (but not the associated window), returns int]
  4301. ncurses_del_panel(|resource panel)
  4302. [ncurses_delay_output | Delay output on terminal using padding characters, returns int]
  4303. ncurses_delay_output(|int milliseconds)
  4304. [ncurses_delch | Delete character at current position, move rest of line left, returns bool]
  4305. ncurses_delch()|
  4306. [ncurses_deleteln | Delete line at current position, move rest of screen up, returns bool]
  4307. ncurses_deleteln()|
  4308. [ncurses_delwin | Delete a ncurses window, returns int]
  4309. ncurses_delwin(|resource window)
  4310. [ncurses_doupdate | Write all prepared refreshes to terminal, returns bool]
  4311. ncurses_doupdate()|
  4312. [ncurses_echo | Activate keyboard input echo, returns bool]
  4313. ncurses_echo()|
  4314. [ncurses_echochar | Single character output including refresh, returns int]
  4315. ncurses_echochar(|int character)
  4316. [ncurses_end | Stop using ncurses, clean up the screen, returns int]
  4317. ncurses_end()|
  4318. [ncurses_erase | Erase terminal screen, returns bool]
  4319. ncurses_erase()|
  4320. [ncurses_erasechar | Returns current erase character, returns string]
  4321. ncurses_erasechar()|
  4322. [ncurses_filter | , returns int]
  4323. ncurses_filter()|
  4324. [ncurses_flash | Flash terminal screen (visual bell), returns bool]
  4325. ncurses_flash()|
  4326. [ncurses_flushinp | Flush keyboard input buffer, returns bool]
  4327. ncurses_flushinp()|
  4328. [ncurses_getch | Read a character from keyboard, returns int]
  4329. ncurses_getch()|
  4330. [ncurses_getmaxyx | Returns the size of a window, returns void]
  4331. ncurses_getmaxyx(|resource window, int &y, int &x)
  4332. [ncurses_getmouse | Reads mouse event, returns bool]
  4333. ncurses_getmouse(|array mevent)
  4334. [ncurses_getyx | Returns the current cursor position for a window, returns void]
  4335. ncurses_getyx(|resource window, int &y, int &x)
  4336. [ncurses_halfdelay | Put terminal into halfdelay mode, returns int]
  4337. ncurses_halfdelay(|int tenth)
  4338. [ncurses_has_colors | Check if terminal has colors, returns bool]
  4339. ncurses_has_colors()|
  4340. [ncurses_has_ic | Check for insert- and delete-capabilities, returns bool]
  4341. ncurses_has_ic()|
  4342. [ncurses_has_il | Check for line insert- and delete-capabilities, returns bool]
  4343. ncurses_has_il()|
  4344. [ncurses_has_key | Check for presence of a function key on terminal keyboard, returns int]
  4345. ncurses_has_key(|int keycode)
  4346. [ncurses_hide_panel | Remove panel from the stack, making it invisible, returns int]
  4347. ncurses_hide_panel(|resource panel)
  4348. [ncurses_hline | Draw a horizontal line at current position using an attributed character and max. n characters long, returns int]
  4349. ncurses_hline(|int charattr, int n)
  4350. [ncurses_inch | Get character and attribute at current position, returns string]
  4351. ncurses_inch()|
  4352. [ncurses_init_color | Set new RGB value for color, returns int]
  4353. ncurses_init_color(|int color, int r, int g, int b)
  4354. [ncurses_init_pair | Allocate a color pair, returns int]
  4355. ncurses_init_pair(|int pair, int fg, int bg)
  4356. [ncurses_init | Initialize ncurses, returns int]
  4357. ncurses_init()|
  4358. [ncurses_insch | Insert character moving rest of line including character at current position, returns int]
  4359. ncurses_insch(|int character)
  4360. [ncurses_insdelln | Insert lines before current line scrolling down (negative numbers delete and scroll up), returns int]
  4361. ncurses_insdelln(|int count)
  4362. [ncurses_insertln | Insert a line, move rest of screen down, returns bool]
  4363. ncurses_insertln()|
  4364. [ncurses_insstr | Insert string at current position, moving rest of line right, returns int]
  4365. ncurses_insstr(|string text)
  4366. [ncurses_instr | Reads string from terminal screen, returns int]
  4367. ncurses_instr(|string buffer)
  4368. [ncurses_isendwin | Ncurses is in endwin mode, normal screen output may be performed, returns bool]
  4369. ncurses_isendwin()|
  4370. [ncurses_keyok | Enable or disable a keycode, returns int]
  4371. ncurses_keyok(|int keycode, bool enable)
  4372. [ncurses_keypad | Turns keypad on or off, returns int]
  4373. ncurses_keypad(|resource window, bool bf)
  4374. [ncurses_killchar | Returns current line kill character, returns bool]
  4375. ncurses_killchar()|
  4376. [ncurses_longname | Returns terminals description, returns string]
  4377. ncurses_longname()|
  4378. [ncurses_meta | Enables/Disable 8-bit meta key information, returns long]
  4379. ncurses_meta(|resource window, bool 8bit)
  4380. [ncurses_mouse_trafo | Transforms coordinates, returns bool]
  4381. ncurses_mouse_trafo(|int &y, int &x, bool toscreen)
  4382. [ncurses_mouseinterval | Set timeout for mouse button clicks, returns int]
  4383. ncurses_mouseinterval(|int milliseconds)
  4384. [ncurses_mousemask | Sets mouse options, returns int]
  4385. ncurses_mousemask(|int newmask, int oldmask)
  4386. [ncurses_move_panel | Moves a panel so that it's upper-left corner is at [startx, starty], returns int]
  4387. ncurses_move_panel(|resource panel, int startx, int starty)
  4388. [ncurses_move | Move output position, returns int]
  4389. ncurses_move(|int y, int x)
  4390. [ncurses_mvaddch | Move current position and add character, returns int]
  4391. ncurses_mvaddch(|int y, int x, int c)
  4392. [ncurses_mvaddchnstr | Move position and add attrributed string with specified length, returns int]
  4393. ncurses_mvaddchnstr(|int y, int x, string s, int n)
  4394. [ncurses_mvaddchstr | Move position and add attributed string, returns int]
  4395. ncurses_mvaddchstr(|int y, int x, string s)
  4396. [ncurses_mvaddnstr | Move position and add string with specified length, returns int]
  4397. ncurses_mvaddnstr(|int y, int x, string s, int n)
  4398. [ncurses_mvaddstr | Move position and add string, returns int]
  4399. ncurses_mvaddstr(|int y, int x, string s)
  4400. [ncurses_mvcur | Move cursor immediately, returns int]
  4401. ncurses_mvcur(|int old_y, int old_x, int new_y, int new_x)
  4402. [ncurses_mvdelch | Move position and delete character, shift rest of line left, returns int]
  4403. ncurses_mvdelch(|int y, int x)
  4404. [ncurses_mvgetch | Move position and get character at new position, returns int]
  4405. ncurses_mvgetch(|int y, int x)
  4406. [ncurses_mvhline | Set new position and draw a horizontal line using an attributed character and max. n characters long, returns int]
  4407. ncurses_mvhline(|int y, int x, int attrchar, int n)
  4408. [ncurses_mvinch | Move position and get attributed character at new position, returns int]
  4409. ncurses_mvinch(|int y, int x)
  4410. [ncurses_mvvline | Set new position and draw a vertical line using an attributed character and max. n characters long, returns int]
  4411. ncurses_mvvline(|int y, int x, int attrchar, int n)
  4412. [ncurses_mvwaddstr | Add string at new position in window, returns int]
  4413. ncurses_mvwaddstr(|resource window, int y, int x, string text)
  4414. [ncurses_napms | Sleep, returns int]
  4415. ncurses_napms(|int milliseconds)
  4416. [ncurses_new_panel | Create a new panel and associate it with window, returns resource]
  4417. ncurses_new_panel(|resource window)
  4418. [ncurses_newpad | Creates a new pad (window), returns resource]
  4419. ncurses_newpad(|int rows, int cols)
  4420. [ncurses_newwin | Create a new window, returns int]
  4421. ncurses_newwin(|int rows, int cols, int y, int x)
  4422. [ncurses_nl | Translate newline and carriage return / line feed, returns bool]
  4423. ncurses_nl()|
  4424. [ncurses_nocbreak | Switch terminal to cooked mode, returns bool]
  4425. ncurses_nocbreak()|
  4426. [ncurses_noecho | Switch off keyboard input echo, returns bool]
  4427. ncurses_noecho()|
  4428. [ncurses_nonl | Do not translate newline and carriage return / line feed, returns bool]
  4429. ncurses_nonl()|
  4430. [ncurses_noqiflush | Do not flush on signal characters, returns int]
  4431. ncurses_noqiflush()|
  4432. [ncurses_noraw | Switch terminal out of raw mode, returns bool]
  4433. ncurses_noraw()|
  4434. [ncurses_pair_content | Gets the RGB value for color, returns int]
  4435. ncurses_pair_content(|int pair, int &f, int &b)
  4436. [ncurses_panel_above | Returns the panel above panel. If panel is null, returns the bottom panel in the stack, returns int]
  4437. ncurses_panel_above(|resource panel)
  4438. [ncurses_panel_below | Returns the panel below panel. If panel is null, returns the top panel in the stack, returns int]
  4439. ncurses_panel_below(|resource panel)
  4440. [ncurses_panel_window | Returns the window associated with panel, returns int]
  4441. ncurses_panel_window(|resource panel)
  4442. [ncurses_pnoutrefresh | Copys a region from a pad into the virtual screen, returns int]
  4443. ncurses_pnoutrefresh(|resource pad, int pminrow, int pmincol, int sminrow, int smincol, int smaxrow, int smaxcol)
  4444. [ncurses_prefresh | Copys a region from a pad into the virtual screen, returns int]
  4445. ncurses_prefresh(|resource pad, int pminrow, int pmincol, int sminrow, int smincol, int smaxrow, int smaxcol)
  4446. [ncurses_putp | , returns int]
  4447. ncurses_putp(|string text)
  4448. [ncurses_qiflush | Flush on signal characters, returns int]
  4449. ncurses_qiflush()|
  4450. [ncurses_raw | Switch terminal into raw mode, returns bool]
  4451. ncurses_raw()|
  4452. [ncurses_refresh | Refresh screen, returns int]
  4453. ncurses_refresh(|int ch)
  4454. [ncurses_replace_panel | Replaces the window associated with panel, returns int]
  4455. ncurses_replace_panel(|resource panel, resource window)
  4456. [ncurses_reset_prog_mode | Resets the prog mode saved by def_prog_mode, returns int]
  4457. ncurses_reset_prog_mode()|
  4458. [ncurses_reset_shell_mode | Resets the shell mode saved by def_shell_mode, returns int]
  4459. ncurses_reset_shell_mode()|
  4460. [ncurses_resetty | Restores saved terminal state, returns bool]
  4461. ncurses_resetty()|
  4462. [ncurses_savetty | Saves terminal state, returns bool]
  4463. ncurses_savetty()|
  4464. [ncurses_scr_dump | Dump screen content to file, returns int]
  4465. ncurses_scr_dump(|string filename)
  4466. [ncurses_scr_init | Initialize screen from file dump, returns int]
  4467. ncurses_scr_init(|string filename)
  4468. [ncurses_scr_restore | Restore screen from file dump, returns int]
  4469. ncurses_scr_restore(|string filename)
  4470. [ncurses_scr_set | Inherit screen from file dump, returns int]
  4471. ncurses_scr_set(|string filename)
  4472. [ncurses_scrl | Scroll window content up or down without changing current position, returns int]
  4473. ncurses_scrl(|int count)
  4474. [ncurses_show_panel | Places an invisible panel on top of the stack, making it visible, returns int]
  4475. ncurses_show_panel(|resource panel)
  4476. [ncurses_slk_attr | Returns current soft label key attribute, returns bool]
  4477. ncurses_slk_attr()|
  4478. [ncurses_slk_attroff | , returns int]
  4479. ncurses_slk_attroff(|int intarg)
  4480. [ncurses_slk_attron | , returns int]
  4481. ncurses_slk_attron(|int intarg)
  4482. [ncurses_slk_attrset | , returns int]
  4483. ncurses_slk_attrset(|int intarg)
  4484. [ncurses_slk_clear | Clears soft labels from screen, returns bool]
  4485. ncurses_slk_clear()|
  4486. [ncurses_slk_color | Sets color for soft label keys, returns int]
  4487. ncurses_slk_color(|int intarg)
  4488. [ncurses_slk_init | Initializes soft label key functions, returns bool]
  4489. ncurses_slk_init(|int format)
  4490. [ncurses_slk_noutrefresh | Copies soft label keys to virtual screen, returns bool]
  4491. ncurses_slk_noutrefresh()|
  4492. [ncurses_slk_refresh | Copies soft label keys to screen, returns bool]
  4493. ncurses_slk_refresh()|
  4494. [ncurses_slk_restore | Restores soft label keys, returns bool]
  4495. ncurses_slk_restore()|
  4496. [ncurses_slk_set | Sets function key labels, returns bool]
  4497. ncurses_slk_set(|int labelnr, string label, int format)
  4498. [ncurses_slk_touch | Fources output when ncurses_slk_noutrefresh is performed, returns bool]
  4499. ncurses_slk_touch()|
  4500. [ncurses_standend | Stop using 'standout' attribute, returns int]
  4501. ncurses_standend()|
  4502. [ncurses_standout | Start using 'standout' attribute, returns int]
  4503. ncurses_standout()|
  4504. [ncurses_start_color | Start using colors, returns int]
  4505. ncurses_start_color()|
  4506. [ncurses_termattrs | Returns a logical OR of all attribute flags supported by terminal, returns bool]
  4507. ncurses_termattrs()|
  4508. [ncurses_termname | Returns terminals (short)-name, returns string]
  4509. ncurses_termname()|
  4510. [ncurses_timeout | Set timeout for special key sequences, returns void]
  4511. ncurses_timeout(|int millisec)
  4512. [ncurses_top_panel | Moves a visible panel to the top of the stack, returns int]
  4513. ncurses_top_panel(|resource panel)
  4514. [ncurses_typeahead | Specify different filedescriptor for typeahead checking, returns int]
  4515. ncurses_typeahead(|int fd)
  4516. [ncurses_ungetch | Put a character back into the input stream, returns int]
  4517. ncurses_ungetch(|int keycode)
  4518. [ncurses_ungetmouse | Pushes mouse event to queue, returns bool]
  4519. ncurses_ungetmouse(|array mevent)
  4520. [ncurses_update_panels | Refreshes the virtual screen to reflect the relations between panels in the stack., returns void]
  4521. ncurses_update_panels()|
  4522. [ncurses_use_default_colors | Assign terminal default colors to color id -1, returns bool]
  4523. ncurses_use_default_colors()|
  4524. [ncurses_use_env | Control use of environment information about terminal size, returns void]
  4525. ncurses_use_env(|bool flag)
  4526. [ncurses_use_extended_names | Control use of extended names in terminfo descriptions, returns int]
  4527. ncurses_use_extended_names(|bool flag)
  4528. [ncurses_vidattr | , returns int]
  4529. ncurses_vidattr(|int intarg)
  4530. [ncurses_vline | Draw a vertical line at current position using an attributed character and max. n characters long, returns int]
  4531. ncurses_vline(|int charattr, int n)
  4532. [ncurses_waddch | Adds character at current position in a window and advance cursor, returns int]
  4533. ncurses_waddch(|resource window, int ch)
  4534. [ncurses_waddstr | Outputs text at current postion in window, returns int]
  4535. ncurses_waddstr(|resource window, string str, [int n])
  4536. [ncurses_wattroff | Turns off attributes for a window, returns int]
  4537. ncurses_wattroff(|resource window, int attrs)
  4538. [ncurses_wattron | Turns on attributes for a window, returns int]
  4539. ncurses_wattron(|resource window, int attrs)
  4540. [ncurses_wattrset | Set the attributes for a window, returns int]
  4541. ncurses_wattrset(|resource window, int attrs)
  4542. [ncurses_wborder | Draws a border around the window using attributed characters, returns int]
  4543. ncurses_wborder(|resource window, int left, int right, int top, int bottom, int tl_corner, int tr_corner, int bl_corner, int br_corner)
  4544. [ncurses_wclear | Clears window, returns int]
  4545. ncurses_wclear(|resource window)
  4546. [ncurses_wcolor_set | Sets windows color pairings, returns int]
  4547. ncurses_wcolor_set(|resource window, int color_pair)
  4548. [ncurses_werase | Erase window contents, returns long]
  4549. ncurses_werase(|resource window)
  4550. [ncurses_wgetch | Reads a character from keyboard (window), returns int]
  4551. ncurses_wgetch(|resource window)
  4552. [ncurses_whline | Draws a horizontal line in a window at current position using an attributed character and max. n characters long, returns int]
  4553. ncurses_whline(|resource window, int charattr, int n)
  4554. [ncurses_wmouse_trafo | Transforms window/stdscr coordinates, returns bool]
  4555. ncurses_wmouse_trafo(|resource window, int &y, int &x, bool toscreen)
  4556. [ncurses_wmove | Moves windows output position, returns int]
  4557. ncurses_wmove(|resource window, int y, int x)
  4558. [ncurses_wnoutrefresh | Copies window to virtual screen, returns int]
  4559. ncurses_wnoutrefresh(|resource window)
  4560. [ncurses_wrefresh | Refresh window on terminal screen, returns int]
  4561. ncurses_wrefresh(|resource window)
  4562. [ncurses_wstandend | End standout mode for a window, returns int]
  4563. ncurses_wstandend(|resource window)
  4564. [ncurses_wstandout | Enter standout mode for a window, returns int]
  4565. ncurses_wstandout(|resource window)
  4566. [ncurses_wvline | Draws a vertical line in a window at current position using an attributed character and max. n characters long, returns int]
  4567. ncurses_wvline(|resource window, int charattr, int n)
  4568. ; -----------------------------------------------------------------------------
  4569. ; Lotus Notes - Lotus Notes functions
  4570. ; -----------------------------------------------------------------------------
  4571. [notes_body | Open the message msg_number in the specified mailbox on the specified server (leave serv, returns array]
  4572. notes_body(|string server, string mailbox, int msg_number)
  4573. [notes_copy_db | Create a note using form form_name, returns string]
  4574. notes_copy_db(|string from_database_name, string to_database_name)
  4575. [notes_create_db | Create a Lotus Notes database, returns bool]
  4576. notes_create_db(|string database_name)
  4577. [notes_create_note | Create a note using form form_name, returns string]
  4578. notes_create_note(|string database_name, string form_name)
  4579. [notes_drop_db | Drop a Lotus Notes database, returns bool]
  4580. notes_drop_db(|string database_name)
  4581. [notes_find_note | Returns a note id found in database_name. Specify the name of the note. Leaving type bla, returns bool]
  4582. notes_find_note(|string database_name, string name, [string type])
  4583. [notes_header_info | Open the message msg_number in the specified mailbox on the specified server (leave serv, returns object]
  4584. notes_header_info(|string server, string mailbox, int msg_number)
  4585. [notes_list_msgs | Returns the notes from a selected database_name, returns bool]
  4586. notes_list_msgs(|string db)
  4587. [notes_mark_read | Mark a note_id as read for the User user_name, returns string]
  4588. notes_mark_read(|string database_name, string user_name, string note_id)
  4589. [notes_mark_unread | Mark a note_id as unread for the User user_name, returns string]
  4590. notes_mark_unread(|string database_name, string user_name, string note_id)
  4591. [notes_nav_create | Create a navigator name, in database_name, returns bool]
  4592. notes_nav_create(|string database_name, string name)
  4593. [notes_search | Find notes that match keywords in database_name, returns string]
  4594. notes_search(|string database_name, string keywords)
  4595. [notes_unread | Returns the unread note id's for the current User user_name, returns string]
  4596. notes_unread(|string database_name, string user_name)
  4597. [notes_version | Get the version Lotus Notes, returns string]
  4598. notes_version(|string database_name)
  4599. ; -----------------------------------------------------------------------------
  4600. ; NSAPI - NSAPI-specific Functions
  4601. ; -----------------------------------------------------------------------------
  4602. [nsapi_request_headers | Fetch all HTTP request headers, returns array]
  4603. nsapi_request_headers()|
  4604. [nsapi_response_headers | Fetch all HTTP response headers, returns array]
  4605. nsapi_response_headers()|
  4606. [nsapi_virtual | Perform an NSAPI sub-request, returns int]
  4607. nsapi_virtual(|string uri)
  4608. ; -----------------------------------------------------------------------------
  4609. ; ODBC - Unified ODBC functions
  4610. ; -----------------------------------------------------------------------------
  4611. [odbc_autocommit | Toggle autocommit behaviour, returns bool]
  4612. odbc_autocommit(|resource connection_id, [bool OnOff])
  4613. [odbc_binmode | Handling of binary column data, returns int]
  4614. odbc_binmode(|resource result_id, int mode)
  4615. [odbc_close_all | Close all ODBC connections, returns void]
  4616. odbc_close_all()|
  4617. [odbc_close | Close an ODBC connection, returns void]
  4618. odbc_close(|resource connection_id)
  4619. [odbc_columnprivileges | Returns a result identifier that can be used to fetch a list of columns and associated privileges, returns int]
  4620. odbc_columnprivileges(|resource connection_id, [string qualifier], [string owner], [string table_name], [string column_name])
  4621. [odbc_columns | Lists the column names in specified tables. Returns a result identifier containing the information., returns resource]
  4622. odbc_columns(|resource connection_id, [string qualifier], [string schema], [string table_name], [string column_name])
  4623. [odbc_commit | Commit an ODBC transaction, returns bool]
  4624. odbc_commit(|resource connection_id)
  4625. [odbc_connect | Connect to a datasource, returns resource]
  4626. odbc_connect(|string dsn, string user, string password, [int cursor_type])
  4627. [odbc_cursor | Get cursorname, returns string]
  4628. odbc_cursor(|resource result_id)
  4629. [odbc_data_source | Returns information about a current connection, returns resource]
  4630. odbc_data_source(|resource connection_id, constant fetch_type)
  4631. [odbc_do | Synonym for odbc_exec, returns resource]
  4632. odbc_do(|resource conn_id, string query)
  4633. [odbc_error | Get the last error code, returns string]
  4634. odbc_error(|[resource connection_id])
  4635. [odbc_errormsg | Get the last error message, returns string]
  4636. odbc_errormsg(|[resource connection_id])
  4637. [odbc_exec | Prepare and execute a SQL statement, returns resource]
  4638. odbc_exec(|resource connection_id, string query_string)
  4639. [odbc_execute | Execute a prepared statement, returns bool]
  4640. odbc_execute(|resource result_id, [array parameters_array])
  4641. [odbc_fetch_array | Fetch a result row as an associative array, returns array]
  4642. odbc_fetch_array(|resource result, [int rownumber])
  4643. [odbc_fetch_into | Fetch one result row into array, returns bool]
  4644. odbc_fetch_into(|resource result_id, [int rownumber], array result_array)
  4645. [odbc_fetch_object | Fetch a result row as an object, returns object]
  4646. odbc_fetch_object(|resource result, [int rownumber])
  4647. [odbc_fetch_row | Fetch a row, returns bool]
  4648. odbc_fetch_row(|resource result_id, [int row_number])
  4649. [odbc_field_len | Get the length (precision) of a field, returns int]
  4650. odbc_field_len(|resource result_id, int field_number)
  4651. [odbc_field_name | Get the columnname, returns string]
  4652. odbc_field_name(|resource result_id, int field_number)
  4653. [odbc_field_num | Return column number, returns int]
  4654. odbc_field_num(|resource result_id, string field_name)
  4655. [odbc_field_precision | Synonym for odbc_field_len, returns string]
  4656. odbc_field_precision(|resource result_id, int field_number)
  4657. [odbc_field_scale | Get the scale of a field, returns string]
  4658. odbc_field_scale(|resource result_id, int field_number)
  4659. [odbc_field_type | Datatype of a field, returns string]
  4660. odbc_field_type(|resource result_id, int field_number)
  4661. [odbc_foreignkeys | Returns a list of foreign keys in the specified table or a list of foreign keys in other tables that refer to the primary key in the specified table, returns resource]
  4662. odbc_foreignkeys(|resource connection_id, string pk_qualifier, string pk_owner, string pk_table, string fk_qualifier, string fk_owner, string fk_table)
  4663. [odbc_free_result | Free resources associated with a result, returns bool]
  4664. odbc_free_result(|resource result_id)
  4665. [odbc_gettypeinfo | Returns a result identifier containing information about data types supported by the data source., returns int]
  4666. odbc_gettypeinfo(|resource connection_id, [int data_type])
  4667. [odbc_longreadlen | Handling of LONG columns, returns int]
  4668. odbc_longreadlen(|resource result_id, int length)
  4669. [odbc_next_result | Checks if multiple results are available, returns bool]
  4670. odbc_next_result(|resource result_id)
  4671. [odbc_num_fields | Number of columns in a result, returns int]
  4672. odbc_num_fields(|resource result_id)
  4673. [odbc_num_rows | Number of rows in a result, returns int]
  4674. odbc_num_rows(|resource result_id)
  4675. [odbc_pconnect | Open a persistent database connection, returns resource]
  4676. odbc_pconnect(|string dsn, string user, string password, [int cursor_type])
  4677. [odbc_prepare | Prepares a statement for execution, returns resource]
  4678. odbc_prepare(|resource connection_id, string query_string)
  4679. [odbc_primarykeys | Returns a result identifier that can be used to fetch the column names that comprise the primary key for a table, returns resource]
  4680. odbc_primarykeys(|resource connection_id, string qualifier, string owner, string table)
  4681. [odbc_procedurecolumns | Retrieve information about parameters to procedures, returns resource]
  4682. odbc_procedurecolumns(|resource connection_id, [string qualifier], [string owner], [string proc], [string column])
  4683. [odbc_procedures | Get the list of procedures stored in a specific data source. Returns a result identifier containing the information., returns resource]
  4684. odbc_procedures(|resource connection_id, [string qualifier], [string owner], [string name])
  4685. [odbc_result_all | Print result as HTML table, returns int]
  4686. odbc_result_all(|resource result_id, [string format])
  4687. [odbc_result | Get result data, returns string]
  4688. odbc_result(|resource result_id, mixed field)
  4689. [odbc_rollback | Rollback a transaction, returns int]
  4690. odbc_rollback(|resource connection_id)
  4691. [odbc_setoption | Adjust ODBC settings. Returns FALSE if an error occurs, otherwise TRUE., returns int]
  4692. odbc_setoption(|resource id, int function, int option, int param)
  4693. [odbc_specialcolumns | Returns either the optimal set of columns that uniquely identifies a row in the table or columns that are automatically updated when any value in the row is updated by a transaction, returns resource]
  4694. odbc_specialcolumns(|resource connection_id, int type, string qualifier, string owner, string table, int scope, int nullable)
  4695. [odbc_statistics | Retrieve statistics about a table, returns resource]
  4696. odbc_statistics(|resource connection_id, string qualifier, string owner, string table_name, int unique, int accuracy)
  4697. [odbc_tableprivileges | Lists tables and the privileges associated with each table, returns int]
  4698. odbc_tableprivileges(|resource connection_id, [string qualifier], [string owner], [string name])
  4699. [odbc_tables | Get the list of table names stored in a specific data source. Returns a result identifier containing the information., returns int]
  4700. odbc_tables(|resource connection_id, [string qualifier], [string owner], [string name], [string types])
  4701. ; -----------------------------------------------------------------------------
  4702. ; Object Aggregation - Object Aggregation/Composition Functions
  4703. ; -----------------------------------------------------------------------------
  4704. [aggregate_info | returns an associative array of the methods and properties from each class that has been aggregated to the object., returns array]
  4705. aggregate_info(|object object)
  4706. [aggregate_methods_by_list | selective dynamic class methods aggregation to an object, returns void]
  4707. aggregate_methods_by_list(|object object, string class_name, array methods_list, [bool exclude])
  4708. [aggregate_methods_by_regexp | selective class methods aggregation to an object using a regular expression, returns void]
  4709. aggregate_methods_by_regexp(|object object, string class_name, string regexp, [bool exclude])
  4710. [aggregate_methods | dynamic class and object aggregation of methods, returns void]
  4711. aggregate_methods(|object object, string class_name)
  4712. [aggregate_properties_by_list | selective dynamic class properties aggregation to an object, returns void]
  4713. aggregate_properties_by_list(|object object, string class_name, array properties_list, [bool exclude])
  4714. [aggregate_properties_by_regexp | selective class properties aggregation to an object using a regular expression, returns void]
  4715. aggregate_properties_by_regexp(|object object, string class_name, string regexp, [bool exclude])
  4716. [aggregate_properties | dynamic aggregation of class properties to an object, returns void]
  4717. aggregate_properties(|object object, string class_name)
  4718. [aggregate | dynamic class and object aggregation of methods and properties, returns void]
  4719. aggregate(|object object, string class_name)
  4720. [aggregation_info | Alias for aggregate_info]
  4721. [deaggregate | Removes the aggregated methods and properties from an object, returns void]
  4722. deaggregate(|object object, [string class_name])
  4723. ; -----------------------------------------------------------------------------
  4724. ; OCI8 - Oracle 8 functions
  4725. ; -----------------------------------------------------------------------------
  4726. [ocibindbyname | Bind a PHP variable to an Oracle Placeholder, returns bool]
  4727. ocibindbyname(|resource stmt, string ph_name, mixed &variable, [int maxlength], [int type])
  4728. [ocicancel | Cancel reading from cursor, returns bool]
  4729. ocicancel(|resource stmt)
  4730. [ocicloselob | Closes lob descriptor, returns bool]
  4731. ocicloselob()|
  4732. [ocicollappend | Append an object to the collection, returns bool]
  4733. ocicollappend(|string value)
  4734. [ocicollassign | Assign a collection from another existing collection, returns bool]
  4735. ocicollassign(|object from)
  4736. [ocicollassignelem | Assign element val to collection at index ndx, returns bool]
  4737. ocicollassignelem(|int ndx, string val)
  4738. [ocicollgetelem | Retrieve the value at collection index ndx, returns string]
  4739. ocicollgetelem(|int ndx)
  4740. [ocicollmax | Return the max value of a collection. For a varray this is the maximum length of the array, returns int]
  4741. ocicollmax()|
  4742. [ocicollsize | Return the size of a collection, returns int]
  4743. ocicollsize()|
  4744. [ocicolltrim | Trim num elements from the end of a collection, returns bool]
  4745. ocicolltrim(|int num)
  4746. [ocicolumnisnull | Test whether a result column is NULL, returns bool]
  4747. ocicolumnisnull(|resource stmt, mixed col)
  4748. [ocicolumnname | Returns the name of a column, returns string]
  4749. ocicolumnname(|resource stmt, int col)
  4750. [ocicolumnprecision | Tell the precision of a column, returns int]
  4751. ocicolumnprecision(|resource stmt, int col)
  4752. [ocicolumnscale | Tell the scale of a column, returns int]
  4753. ocicolumnscale(|resource stmt, int col)
  4754. [ocicolumnsize | Return result column size, returns int]
  4755. ocicolumnsize(|resource stmt, mixed column)
  4756. [ocicolumntype | Returns the data type of a column, returns mixed]
  4757. ocicolumntype(|resource stmt, int col)
  4758. [ocicolumntyperaw | Tell the raw oracle data type of a column, returns mixed]
  4759. ocicolumntyperaw(|resource stmt, int col)
  4760. [ocicommit | Commits outstanding transactions, returns bool]
  4761. ocicommit(|resource connection)
  4762. [ocidefinebyname | Use a PHP variable for the define-step during a SELECT, returns bool]
  4763. ocidefinebyname(|resource stmt, string column_name, mixed &variable, [int type])
  4764. [ocierror | Return the last error of stmt|conn|global, returns array]
  4765. ocierror(|[resource stmt|conn|global])
  4766. [ociexecute | Execute a statement, returns bool]
  4767. ociexecute(|resource stmt, [int mode])
  4768. [ocifetch | Fetches the next row into result-buffer, returns bool]
  4769. ocifetch(|resource stmt)
  4770. [ocifetchinto | Fetches the next row into an array, returns int]
  4771. ocifetchinto(|resource stmt, array &result, [int mode])
  4772. [ocifetchstatement | Fetch all rows of result data into an array, returns int]
  4773. ocifetchstatement(|resource stmt, array &output, [int skip], [int maxrows], [int flags])
  4774. [ocifreecollection | Deletes collection object, returns bool]
  4775. ocifreecollection()|
  4776. [ocifreecursor | Free all resources associated with a cursor, returns bool]
  4777. ocifreecursor(|resource stmt)
  4778. [ocifreedesc | Deletes a large object descriptor, returns bool]
  4779. ocifreedesc()|
  4780. [ocifreestatement | Free all resources associated with a statement, returns bool]
  4781. ocifreestatement(|resource stmt)
  4782. [ociinternaldebug | Enables or disables internal debug output, returns void]
  4783. ociinternaldebug(|int onoff)
  4784. [ociloadlob | Loads a large object, returns string]
  4785. ociloadlob()|
  4786. [ocilogoff | Disconnects from Oracle server, returns bool]
  4787. ocilogoff(|resource connection)
  4788. [ocilogon | Establishes a connection to Oracle, returns resource]
  4789. ocilogon(|string username, string password, [string db])
  4790. [ocinewcollection | Initialize a new collection, returns object]
  4791. ocinewcollection(|resource connection, string tdo, [string schema])
  4792. [ocinewcursor | Return a new cursor (Statement-Handle), returns resource]
  4793. ocinewcursor(|resource conn)
  4794. [ocinewdescriptor | Initialize a new empty LOB or FILE descriptor, returns object]
  4795. ocinewdescriptor(|resource connection, [int type])
  4796. [ocinlogon | Establishes a new connection to Oracle, returns resource]
  4797. ocinlogon(|string username, string password, [string db])
  4798. [ocinumcols | Return the number of result columns in a statement, returns int]
  4799. ocinumcols(|resource stmt)
  4800. [ociparse | Parse a query and return an Oracle statement, returns resource]
  4801. ociparse(|resource conn, string query)
  4802. [ociplogon | Connect to an Oracle database using a persistent connection, returns resource]
  4803. ociplogon(|string username, string password, [string db])
  4804. [ociresult | Returns column value for fetched row, returns mixed]
  4805. ociresult(|resource statement, mixed col)
  4806. [ocirollback | Rolls back outstanding transactions, returns bool]
  4807. ocirollback(|resource connection)
  4808. [ocirowcount | Gets the number of affected rows, returns int]
  4809. ocirowcount(|resource stmt)
  4810. [ocisavelob | Saves a large object, returns bool]
  4811. ocisavelob()|
  4812. [ocisavelobfile | Saves a large object file, returns bool]
  4813. ocisavelobfile()|
  4814. [ociserverversion | Return a string containing server version information, returns string]
  4815. ociserverversion(|resource conn)
  4816. [ocisetprefetch | Sets number of rows to be prefetched, returns bool]
  4817. ocisetprefetch(|resource stmt, int rows)
  4818. [ocistatementtype | Return the type of an OCI statement, returns string]
  4819. ocistatementtype(|resource stmt)
  4820. [ociwritelobtofile | Saves a large object file, returns bool]
  4821. ociwritelobtofile(|[string filename], [int start], [int length])
  4822. [ociwritetemporarylob | Writes temporary blob, returns bool]
  4823. ociwritetemporarylob(|string var, [int lob_type])
  4824. ; -----------------------------------------------------------------------------
  4825. ; OpenSSL - OpenSSL functions
  4826. ; -----------------------------------------------------------------------------
  4827. [openssl_csr_export_to_file | Exports a CSR to a file, returns bool]
  4828. openssl_csr_export_to_file(|resource csr, string outfilename, [bool notext])
  4829. [openssl_csr_export | Exports a CSR as a string, returns bool]
  4830. openssl_csr_export(|resource csr, string &out, [bool notext])
  4831. [openssl_csr_new | Generates a CSR, returns bool]
  4832. openssl_csr_new(|array dn, resource privkey, [array configargs], [array extraattribs])
  4833. [openssl_csr_sign | Sign a CSR with another certificate (or itself) and generate a certificate, returns resource]
  4834. openssl_csr_sign(|mixed csr, mixed cacert, mixed priv_key, int days)
  4835. [openssl_error_string | Return openSSL error message, returns mixed]
  4836. openssl_error_string()|
  4837. [openssl_free_key | Free key resource, returns void]
  4838. openssl_free_key(|resource key_identifier)
  4839. [openssl_get_privatekey | Get a private key, returns resource]
  4840. openssl_get_privatekey(|mixed key, [string passphrase])
  4841. [openssl_get_publickey | Extract public key from certificate and prepare it for use, returns resource]
  4842. openssl_get_publickey(|mixed certificate)
  4843. [openssl_open | Open sealed data, returns bool]
  4844. openssl_open(|string sealed_data, string open_data, string env_key, mixed priv_key_id)
  4845. [openssl_pkcs7_decrypt | Decrypts an S/MIME encrypted message, returns bool]
  4846. openssl_pkcs7_decrypt(|string infilename, string outfilename, mixed recipcert, [mixed recipkey])
  4847. [openssl_pkcs7_encrypt | Encrypt an S/MIME message, returns bool]
  4848. openssl_pkcs7_encrypt(|string infile, string outfile, mixed recipcerts, array headers, [int flags])
  4849. [openssl_pkcs7_sign | sign an S/MIME message, returns bool]
  4850. openssl_pkcs7_sign(|string infilename, string outfilename, mixed signcert, mixed privkey, array headers, [int flags], [string extracerts])
  4851. [openssl_pkcs7_verify | Verifies the signature of an S/MIME signed message, returns bool]
  4852. openssl_pkcs7_verify(|string filename, int flags, [string outfilename], [array cainfo], [string extracerts])
  4853. [openssl_pkey_export_to_file | Gets an exportable representation of a key into a file, returns bool]
  4854. openssl_pkey_export_to_file(|mixed key, string outfilename, [string passphrase], [array configargs])
  4855. [openssl_pkey_export | Gets an exportable representation of a key into a string, returns bool]
  4856. openssl_pkey_export(|mixed key, string &out, [string passphrase], [array configargs])
  4857. [openssl_pkey_get_private | Get a private key, returns resource]
  4858. openssl_get_privatekey(|mixed key, [string passphrase])
  4859. [openssl_pkey_get_public | Extract public key from certificate and prepare it for use, returns resource]
  4860. openssl_pkey_get_public(|mixed certificate)
  4861. [openssl_pkey_new | Generates a new private key, returns resource]
  4862. openssl_pkey_new(|[array configargs])
  4863. [openssl_private_decrypt | Decrypts data with private key, returns bool]
  4864. openssl_private_decrypt(|string data, string &decrypted, mixed key, [int padding])
  4865. [openssl_private_encrypt | Encrypts data with private key, returns bool]
  4866. openssl_private_encrypt(|string data, string crypted, mixed key, [int padding])
  4867. [openssl_public_decrypt | Decrypts data with public key, returns bool]
  4868. openssl_public_decrypt(|string data, string crypted, resource key, [int padding])
  4869. [openssl_public_encrypt | Encrypts data with public key, returns bool]
  4870. openssl_public_encrypt(|string data, string crypted, mixed key, [int padding])
  4871. [openssl_seal | Seal (encrypt) data, returns int]
  4872. openssl_seal(|string data, string sealed_data, array env_keys, array pub_key_ids)
  4873. [openssl_sign | Generate signature, returns bool]
  4874. openssl_sign(|string data, string signature, mixed priv_key_id)
  4875. [openssl_verify | Verify signature, returns int]
  4876. openssl_verify(|string data, string signature, mixed pub_key_id)
  4877. [openssl_x509_check_private_key | Checks if a private key corresponds to a certificate, returns bool]
  4878. openssl_x509_check_private_key(|mixed cert, mixed key)
  4879. [openssl_x509_checkpurpose | Verifies if a certificate can be used for a particular purpose, returns bool]
  4880. openssl_x509_checkpurpose(|mixed x509cert, int purpose, array cainfo, [string untrustedfile])
  4881. [openssl_x509_export_to_file | Exports a certificate to file, returns bool]
  4882. openssl_x509_export_to_file(|mixed x509, string outfilename, [bool notext])
  4883. [openssl_x509_export | Exports a certificate as a string, returns bool]
  4884. openssl_x509_export(|mixed x509, string &output, [bool notext])
  4885. [openssl_x509_free | Free certificate resource, returns void]
  4886. openssl_x509_free(|resource x509cert)
  4887. [openssl_x509_parse | Parse an X509 certificate and return the information as an array, returns array]
  4888. openssl_x509_parse(|mixed x509cert, [bool shortnames])
  4889. [openssl_x509_read | Parse an X.509 certificate and return a resource identifier for it, returns resource]
  4890. openssl_x509_read(|mixed x509certdata)
  4891. ; -----------------------------------------------------------------------------
  4892. ; Oracle - Oracle functions
  4893. ; -----------------------------------------------------------------------------
  4894. [ora_bind | Binds a PHP variable to an Oracle parameter, returns bool]
  4895. ora_bind(|resource cursor, string PHP_variable_name, string SQL_parameter_name, int length, [int type])
  4896. [ora_close | Closes an Oracle cursor, returns bool]
  4897. ora_close(|resource cursor)
  4898. [ora_columnname | Gets the name of an Oracle result column, returns string]
  4899. ora_columnname(|resource cursor, int column)
  4900. [ora_columnsize | Returns the size of an Oracle result column, returns int]
  4901. ora_columnsize(|resource cursor, int column)
  4902. [ora_columntype | Gets the type of an Oracle result column, returns string]
  4903. ora_columntype(|resource cursor, int column)
  4904. [ora_commit | Commit an Oracle transaction, returns bool]
  4905. ora_commit(|resource conn)
  4906. [ora_commitoff | Disable automatic commit, returns bool]
  4907. ora_commitoff(|resource conn)
  4908. [ora_commiton | Enable automatic commit, returns bool]
  4909. ora_commiton(|resource conn)
  4910. [ora_do | Parse, Exec, Fetch, returns resource]
  4911. ora_do(|resource conn, string query)
  4912. [ora_error | Gets an Oracle error message, returns string]
  4913. ora_error(|resource cursor_or_connection)
  4914. [ora_errorcode | Gets an Oracle error code, returns int]
  4915. ora_errorcode(|resource cursor_or_connection)
  4916. [ora_exec | Execute a parsed statement on an Oracle cursor, returns bool]
  4917. ora_exec(|resource cursor)
  4918. [ora_fetch_into | Fetch a row into the specified result array, returns int]
  4919. ora_fetch_into(|resource cursor, array result, [int flags])
  4920. [ora_fetch | Fetch a row of data from a cursor, returns bool]
  4921. ora_fetch(|resource cursor)
  4922. [ora_getcolumn | Get data from a fetched column, returns mixed]
  4923. ora_getcolumn(|resource cursor, int column)
  4924. [ora_logoff | Close an Oracle connection, returns bool]
  4925. ora_logoff(|resource connection)
  4926. [ora_logon | Open an Oracle connection, returns resource]
  4927. ora_logon(|string user, string password)
  4928. [ora_numcols | Returns the number of columns, returns int]
  4929. ora_numcols(|resource cursor)
  4930. [ora_numrows | Returns the number of rows, returns int]
  4931. ora_numrows(|resource cursor)
  4932. [ora_open | Opens an Oracle cursor, returns resource]
  4933. ora_open(|resource connection)
  4934. [ora_parse | Parse an SQL statement with Oracle, returns bool]
  4935. ora_parse(|resource cursor, string sql_statement, int defer)
  4936. [ora_plogon | Open a persistent Oracle connection, returns resource]
  4937. ora_plogon(|string user, string password)
  4938. [ora_rollback | Rolls back a transaction, returns bool]
  4939. ora_rollback(|resource connection)
  4940. ; -----------------------------------------------------------------------------
  4941. ; OvrimosSQL - Ovrimos SQL functions
  4942. ; -----------------------------------------------------------------------------
  4943. [ovrimos_close | Closes the connection to ovrimos, returns void]
  4944. ovrimos_close(|int connection)
  4945. [ovrimos_commit | Commits the transaction, returns bool]
  4946. ovrimos_commit(|int connection_id)
  4947. [ovrimos_connect | Connect to the specified database, returns int]
  4948. ovrimos_connect(|string host, string db, string user, string password)
  4949. [ovrimos_cursor | Returns the name of the cursor, returns string]
  4950. ovrimos_cursor(|int result_id)
  4951. [ovrimos_exec | Executes an SQL statement, returns int]
  4952. ovrimos_exec(|int connection_id, string query)
  4953. [ovrimos_execute | Executes a prepared SQL statement, returns bool]
  4954. ovrimos_execute(|int result_id, [array parameters_array])
  4955. [ovrimos_fetch_into | Fetches a row from the result set, returns bool]
  4956. ovrimos_fetch_into(|int result_id, array result_array, [string how], [int rownumber])
  4957. [ovrimos_fetch_row | Fetches a row from the result set, returns bool]
  4958. ovrimos_fetch_row(|int result_id, [int how], [int row_number])
  4959. [ovrimos_field_len | Returns the length of the output column, returns int]
  4960. ovrimos_field_len(|int result_id, int field_number)
  4961. [ovrimos_field_name | Returns the output column name, returns string]
  4962. ovrimos_field_name(|int result_id, int field_number)
  4963. [ovrimos_field_num | Returns the (1-based) index of the output column, returns int]
  4964. ovrimos_field_num(|int result_id, string field_name)
  4965. [ovrimos_field_type | Returns the (numeric) type of the output column, returns int]
  4966. ovrimos_field_type(|int result_id, int field_number)
  4967. [ovrimos_free_result | Frees the specified result_id, returns bool]
  4968. ovrimos_free_result(|int result_id)
  4969. [ovrimos_longreadlen | Specifies how many bytes are to be retrieved from long datatypes, returns bool]
  4970. ovrimos_longreadlen(|int result_id, int length)
  4971. [ovrimos_num_fields | Returns the number of columns, returns int]
  4972. ovrimos_num_fields(|int result_id)
  4973. [ovrimos_num_rows | Returns the number of rows affected by update operations, returns int]
  4974. ovrimos_num_rows(|int result_id)
  4975. [ovrimos_prepare | Prepares an SQL statement, returns int]
  4976. ovrimos_prepare(|int connection_id, string query)
  4977. [ovrimos_result_all | Prints the whole result set as an HTML table, returns int]
  4978. ovrimos_result_all(|int result_id, [string format])
  4979. [ovrimos_result | Retrieves the output column, returns string]
  4980. ovrimos_result(|int result_id, mixed field)
  4981. [ovrimos_rollback | Rolls back the transaction, returns bool]
  4982. ovrimos_rollback(|int connection_id)
  4983. ; -----------------------------------------------------------------------------
  4984. ; Output Control - Output Control Functions
  4985. ; -----------------------------------------------------------------------------
  4986. [flush | Flush the output buffer, returns void]
  4987. flush()|
  4988. [ob_clean | Clean (erase) the output buffer, returns void]
  4989. ob_clean()|
  4990. [ob_end_clean | Clean (erase) the output buffer and turn off output buffering, returns bool]
  4991. ob_end_clean()|
  4992. [ob_end_flush | Flush (send) the output buffer and turn off output buffering, returns bool]
  4993. ob_end_flush()|
  4994. [ob_flush | Flush (send) the output buffer, returns void]
  4995. ob_flush()|
  4996. [ob_get_clean | Get current buffer contents and delete current output buffer, returns string]
  4997. ob_get_clean()|
  4998. [ob_get_contents | Return the contents of the output buffer, returns string]
  4999. ob_get_contents()|
  5000. [ob_get_length | Return the length of the output buffer, returns int]
  5001. ob_get_length()|
  5002. [ob_get_level | Return the nesting level of the output buffering mechanism, returns int]
  5003. ob_get_level()|
  5004. [ob_get_status | Get status of output buffers, returns array]
  5005. ob_get_status(|[bool full_status])
  5006. [ob_gzhandler | ob_start callback function to gzip output buffer, returns string]
  5007. ob_gzhandler(|string buffer, [int mode])
  5008. [ob_implicit_flush | Turn implicit flush on/off, returns void]
  5009. ob_implicit_flush(|[int flag])
  5010. [ob_start | Turn on output buffering, returns bool]
  5011. ob_start(|[callback output_callback])
  5012. ; -----------------------------------------------------------------------------
  5013. ; Object overloading - Object property and method call overloading
  5014. ; -----------------------------------------------------------------------------
  5015. [overload | Enable property and method call overloading for a class, returns void]
  5016. overload(|[string class_name])
  5017. ; -----------------------------------------------------------------------------
  5018. ; PDF - PDF functions
  5019. ; -----------------------------------------------------------------------------
  5020. [pdf_add_annotation | Deprecated: Adds annotation]
  5021. [pdf_add_bookmark | Adds bookmark for current page, returns int]
  5022. pdf_add_bookmark(|resource pdfdoc, string text, [int parent], [int open])
  5023. [pdf_add_launchlink | Add a launch annotation for current page, returns bool]
  5024. pdf_add_launchlink(|resource pdfdoc, float llx, float lly, float urx, float ury, string filename)
  5025. [pdf_add_locallink | Add a link annotation for current page, returns bool]
  5026. pdf_add_locallink(|resource pdfdoc, float lowerleftx, float lowerlefty, float upperrightx, float upperrighty, int page, string dest)
  5027. [pdf_add_note | Sets annotation for current page, returns bool]
  5028. pdf_add_note(|resource pdfdoc, float llx, float lly, float urx, float ury, string contents, string title, string icon, int open)
  5029. [pdf_add_outline | Deprecated: Adds bookmark for current page]
  5030. [pdf_add_pdflink | Adds file link annotation for current page, returns bool]
  5031. pdf_add_pdflink(|resource pdfdoc, float bottom_left_x, float bottom_left_y, float up_right_x, float up_right_y, string filename, int page, string dest)
  5032. [pdf_add_thumbnail | Adds thumbnail for current page, returns bool]
  5033. pdf_add_thumbnail(|resource pdfdoc, int image)
  5034. [pdf_add_weblink | Adds weblink for current page, returns bool]
  5035. pdf_add_weblink(|resource pdfdoc, float lowerleftx, float lowerlefty, float upperrightx, float upperrighty, string url)
  5036. [pdf_arc | Draws an arc (counterclockwise), returns bool]
  5037. pdf_arc(|resource pdfdoc, float x, float y, float r, float alpha, float beta)
  5038. [pdf_arcn | Draws an arc (clockwise), returns bool]
  5039. pdf_arcn(|resource pdfdoc, float x, float y, float r, float alpha, float beta)
  5040. [pdf_attach_file | Adds a file attachment for current page, returns bool]
  5041. pdf_attach_file(|resource pdfdoc, float llx, float lly, float urx, float ury, string filename, string description, string author, string mimetype, string icon)
  5042. [pdf_begin_page | Starts new page, returns bool]
  5043. pdf_begin_page(|resource pdfdoc, float width, float height)
  5044. [pdf_begin_pattern | Starts new pattern, returns int]
  5045. pdf_begin_pattern(|resource pdfdoc, float width, float height, float xstep, float ystep, int painttype)
  5046. [pdf_begin_template | Starts new template, returns int]
  5047. pdf_begin_template(|resource pdfdoc, float width, float height)
  5048. [pdf_circle | Draws a circle, returns bool]
  5049. pdf_circle(|resource pdfdoc, float x, float y, float r)
  5050. [pdf_clip | Clips to current path, returns bool]
  5051. pdf_clip(|resource pdfdoc)
  5052. [pdf_close_image | Closes an image, returns void]
  5053. pdf_close_image(|resource pdfdoc, int image)
  5054. [pdf_close_pdi_page | Close the page handle, returns bool]
  5055. pdf_close_pdi_page(|resource pdfdoc, int pagehandle)
  5056. [pdf_close_pdi | Close the input PDF document, returns bool]
  5057. pdf_close_pdi(|resource pdfdoc, int dochandle)
  5058. [pdf_close | Closes a pdf resource, returns bool]
  5059. pdf_close(|resource pdfdoc)
  5060. [pdf_closepath_fill_stroke | Closes, fills and strokes current path, returns bool]
  5061. pdf_closepath_fill_stroke(|resource pdfdoc)
  5062. [pdf_closepath_stroke | Closes path and draws line along path, returns bool]
  5063. pdf_closepath_stroke(|resource pdfdoc)
  5064. [pdf_closepath | Closes path, returns bool]
  5065. pdf_closepath(|resource pdfdoc)
  5066. [pdf_concat | Concatenate a matrix to the CTM, returns bool]
  5067. pdf_concat(|resource pdfdoc, float a, float b, float c, float d, float e, float f)
  5068. [pdf_continue_text | Outputs text in next line, returns bool]
  5069. pdf_continue_text(|resource pdfdoc, string text)
  5070. [pdf_curveto | Draws a curve, returns bool]
  5071. pdf_curveto(|resource pdfdoc, float x1, float y1, float x2, float y2, float x3, float y3)
  5072. [pdf_delete | Deletes a PDF object, returns bool]
  5073. pdf_delete(|resource pdfdoc)
  5074. [pdf_end_page | Ends a page, returns bool]
  5075. pdf_end_page(|resource pdfdoc)
  5076. [pdf_end_pattern | Finish pattern, returns bool]
  5077. pdf_end_pattern(|resource pdfdoc)
  5078. [pdf_end_template | Finish template, returns bool]
  5079. pdf_end_template(|resource pdfdoc)
  5080. [pdf_endpath | Deprecated: Ends current path]
  5081. [pdf_fill_stroke | Fills and strokes current path, returns bool]
  5082. pdf_fill_stroke(|resource pdfdoc)
  5083. [pdf_fill | Fills current path, returns bool]
  5084. pdf_fill(|resource pdfdoc)
  5085. [pdf_findfont | Prepare font for later use with pdf_setfont., returns int]
  5086. pdf_findfont(|resource pdfdoc, string fontname, string encoding, [int embed])
  5087. [pdf_get_buffer | Fetch the buffer containig the generated PDF data., returns string]
  5088. pdf_get_buffer(|resource pdfdoc)
  5089. [pdf_get_font | Deprecated: font handling]
  5090. [pdf_get_fontname | Deprecated: font handling]
  5091. [pdf_get_fontsize | Deprecated: font handling]
  5092. [pdf_get_image_height | Deprecated: returns height of an image]
  5093. [pdf_get_image_width | Deprecated: Returns width of an image]
  5094. [pdf_get_majorversion | Returns the major version number of the PDFlib, returns int]
  5095. pdf_get_majorversion()|
  5096. [pdf_get_minorversion | Returns the minor version number of the PDFlib, returns int]
  5097. pdf_get_minorversion()|
  5098. [pdf_get_parameter | Gets certain parameters, returns string]
  5099. pdf_get_parameter(|resource pdfdoc, string key, [float modifier])
  5100. [pdf_get_pdi_parameter | Get some PDI string parameters, returns string]
  5101. pdf_get_pdi_parameter(|resource pdfdoc, string key, int document, int page, int index)
  5102. [pdf_get_pdi_value | Gets some PDI numerical parameters, returns string]
  5103. pdf_get_pdi_value(|resource pdfdoc, string key, int doc, int page, int index)
  5104. [pdf_get_value | Gets certain numerical value, returns float]
  5105. pdf_get_value(|resource pdfdoc, string key, [float modifier])
  5106. [pdf_initgraphics | Resets graphic state, returns bool]
  5107. pdf_initgraphics(|resource pdfdoc)
  5108. [pdf_lineto | Draws a line, returns bool]
  5109. pdf_lineto(|resource pdfdoc, float x, float y)
  5110. [pdf_makespotcolor | Makes a spotcolor, returns bool]
  5111. pdf_makespotcolor(|resource pdfdoc, string spotname)
  5112. [pdf_moveto | Sets current point, returns bool]
  5113. pdf_moveto(|resource pdfdoc, float x, float y)
  5114. [pdf_new | Creates a new pdf resource, returns resource]
  5115. pdf_new(| )
  5116. [pdf_open_CCITT | Opens a new image file with raw CCITT data, returns int]
  5117. pdf_open_CCITT(|resource pdfdoc, string filename, int width, int height, int BitReverse, int k, int Blackls1)
  5118. [pdf_open_file | Opens a new pdf object, returns bool]
  5119. pdf_open_file(|resource pdfdoc, [string filename])
  5120. [pdf_open_gif | Deprecated: Opens a GIF image]
  5121. [pdf_open_image_file | Reads an image from a file, returns int]
  5122. pdf_open_image_file(|resource pdfdoc, string imagetype, string filename, [string stringparam], [string intparam])
  5123. [pdf_open_image | Versatile function for images, returns int]
  5124. pdf_open_image(|resource PDF-document, string imagetype, string source, string data, long length, int width, int height, int components, int bpc, string params)
  5125. [pdf_open_jpeg | Deprecated: Opens a JPEG image]
  5126. [pdf_open_memory_image | Opens an image created with PHP's image functions, returns int]
  5127. pdf_open_memory_image(|resource pdfdoc, resource image)
  5128. [pdf_open_pdi_page | Prepare a page, returns int]
  5129. pdf_open_pdi_page(|resource pdfdoc, int dochandle, int pagenumber, string pagelabel)
  5130. [pdf_open_pdi | Opens a PDF file, returns int]
  5131. pdf_open_pdi(|resource pdfdoc, string filename, string stringparam, int intparam)
  5132. [pdf_open_png | Deprecated: Opens a PNG image]
  5133. [pdf_open_tiff | Deprecated: Opens a TIFF image]
  5134. [pdf_open | Deprecated: Open a new pdf object]
  5135. [pdf_place_image | Places an image on the page, returns bool]
  5136. pdf_place_image(|resource pdfdoc, int image, float x, float y, float scale)
  5137. [pdf_place_pdi_page | Places an image on the page, returns bool]
  5138. pdf_place_pdi_page(|resource pdfdoc, int page, float x, float y, float sx, float sy)
  5139. [pdf_rect | Draws a rectangle, returns bool]
  5140. pdf_rect(|resource pdfdoc, float x, float y, float width, float height)
  5141. [pdf_restore | Restores formerly saved environment, returns bool]
  5142. pdf_restore(|resource pdfdoc)
  5143. [pdf_rotate | Sets rotation, returns bool]
  5144. pdf_rotate(|resource pdfdoc, float phi)
  5145. [pdf_save | Saves the current environment, returns bool]
  5146. pdf_save(|resource pdfdoc)
  5147. [pdf_scale | Sets scaling, returns bool]
  5148. pdf_scale(|resource pdfdoc, float x-scale, float y-scale)
  5149. [pdf_set_border_color | Sets color of border around links and annotations, returns bool]
  5150. pdf_set_border_color(|resource pdfdoc, float red, float green, float blue)
  5151. [pdf_set_border_dash | Sets dash style of border around links and annotations, returns bool]
  5152. pdf_set_border_dash(|resource pdfdoc, float black, float white)
  5153. [pdf_set_border_style | Sets style of border around links and annotations, returns bool]
  5154. pdf_set_border_style(|resource pdfdoc, string style, float width)
  5155. [pdf_set_char_spacing | Deprecated: Sets character spacing]
  5156. [pdf_set_duration | Deprecated: Sets duration between pages]
  5157. [pdf_set_font | Deprecated: Selects a font face and size]
  5158. [pdf_set_horiz_scaling | Sets horizontal scaling of text]
  5159. [pdf_set_info_author | Deprecated: Fills the author field of the document]
  5160. [pdf_set_info_creator | Deprecated: Fills the creator field of the document]
  5161. [pdf_set_info_keywords | Deprecated: Fills the keywords field of the document]
  5162. [pdf_set_info_subject | Deprecated: Fills the subject field of the document]
  5163. [pdf_set_info_title | Deprecated: Fills the title field of the document]
  5164. [pdf_set_info | Fills a field of the document information, returns bool]
  5165. pdf_set_info(|resource pdfdoc, string key, string value)
  5166. [pdf_set_leading | Deprecated: Sets distance between text lines]
  5167. [pdf_set_parameter | Sets certain parameters, returns bool]
  5168. pdf_set_parameter(|resource pdfdoc, string key, string value)
  5169. [pdf_set_text_matrix | Deprecated: Sets the text matrix]
  5170. [pdf_set_text_pos | Sets text position, returns bool]
  5171. pdf_set_text_pos(|resource pdfdoc, float x, float y)
  5172. [pdf_set_text_rendering | Deprecated: Determines how text is rendered]
  5173. [pdf_set_text_rise | Deprecated: Sets the text rise]
  5174. [pdf_set_value | Sets certain numerical value, returns bool]
  5175. pdf_set_value(|resource pdfdoc, string key, float value)
  5176. [pdf_set_word_spacing | Deprecated: Sets spacing between words]
  5177. [pdf_setcolor | Sets fill and stroke color, returns bool]
  5178. pdf_setcolor(|resource pdfdoc, string type, string colorspace, float c1, [float c2], [float c3], [float c4])
  5179. [pdf_setdash | Sets dash pattern, returns bool]
  5180. pdf_setdash(|resource pdfdoc, float b, float w)
  5181. [pdf_setflat | Sets flatness, returns bool]
  5182. pdf_setflat(|resource pdfdoc, float flatness)
  5183. [pdf_setfont | Set the current font, returns bool]
  5184. pdf_setfont(|resource pdfdoc, int font, float size)
  5185. [pdf_setgray_fill | Sets filling color to gray value, returns bool]
  5186. pdf_setgray_fill(|resource pdfdoc, float gray)
  5187. [pdf_setgray_stroke | Sets drawing color to gray value, returns bool]
  5188. pdf_setgray_stroke(|resource pdfdoc, float gray)
  5189. [pdf_setgray | Sets drawing and filling color to gray value, returns bool]
  5190. pdf_setgray(|resource pdfdoc, float gray)
  5191. [pdf_setlinecap | Sets linecap parameter, returns void]
  5192. pdf_setlinecap(|resource pdfdoc, int linecap)
  5193. [pdf_setlinejoin | Sets linejoin parameter, returns bool]
  5194. pdf_setlinejoin(|resource pdfdoc, int value)
  5195. [pdf_setlinewidth | Sets line width, returns void]
  5196. pdf_setlinewidth(|resource pdfdoc, float width)
  5197. [pdf_setmatrix | Sets current transformation matrix, returns bool]
  5198. pdf_setmatrix(|resource pdfdoc, float a, float b, float c, float d, float e, float f)
  5199. [pdf_setmiterlimit | Sets miter limit, returns bool]
  5200. pdf_setmiterlimit(|resource pdfdoc, float miter)
  5201. [pdf_setpolydash | Deprecated: Sets complicated dash pattern]
  5202. [pdf_setrgbcolor_fill | Sets filling color to rgb color value, returns bool]
  5203. pdf_setrgbcolor_fill(|resource pdfdoc, float red_value, float green_value, float blue_value)
  5204. [pdf_setrgbcolor_stroke | Sets drawing color to rgb color value, returns bool]
  5205. pdf_setrgbcolor_stroke(|resource pdfdoc, float red_value, float green_value, float blue_value)
  5206. [pdf_setrgbcolor | Sets drawing and filling color to rgb color value, returns bool]
  5207. pdf_setrgbcolor(|resource pdfdoc, float red_value, float green_value, float blue_value)
  5208. [pdf_show_boxed | Output text in a box, returns int]
  5209. pdf_show_boxed(|resource pdfdoc, string text, float left, float top, float width, float height, string mode, [string feature])
  5210. [pdf_show_xy | Output text at given position, returns bool]
  5211. pdf_show_xy(|resource pdfdoc, string text, float x, float y)
  5212. [pdf_show | Output text at current position, returns bool]
  5213. pdf_show(|resource pdfdoc, string text)
  5214. [pdf_skew | Skews the coordinate system, returns bool]
  5215. pdf_skew(|resource pdfdoc, float alpha, float beta)
  5216. [pdf_stringwidth | Returns width of text using current font, returns float]
  5217. pdf_stringwidth(|resource pdfdoc, string text, [int font], [float size])
  5218. [pdf_stroke | Draws line along path, returns bool]
  5219. pdf_stroke(|resource pdfdoc)
  5220. [pdf_translate | Sets origin of coordinate system, returns bool]
  5221. pdf_translate(|resource pdfdoc, float tx, float ty)
  5222. ; -----------------------------------------------------------------------------
  5223. ; Verisign Payflow Pro - Verisign Payflow Pro functions
  5224. ; -----------------------------------------------------------------------------
  5225. [pfpro_cleanup | Shuts down the Payflow Pro library, returns void]
  5226. pfpro_cleanup()|
  5227. [pfpro_init | Initialises the Payflow Pro library, returns void]
  5228. pfpro_init()|
  5229. [pfpro_process_raw | Process a raw transaction with Payflow Pro, returns string]
  5230. pfpro_process_raw(|string parameters, [string address], [int port], [int timeout], [string proxy_address], [int proxy_port], [string proxy_logon], [string proxy_password])
  5231. [pfpro_process | Process a transaction with Payflow Pro, returns array]
  5232. pfpro_process(|array parameters, [string address], [int port], [int timeout], [string proxy_address], [int proxy_port], [string proxy_logon], [string proxy_password])
  5233. [pfpro_version | Returns the version of the Payflow Pro software, returns string]
  5234. pfpro_version()|
  5235. ; -----------------------------------------------------------------------------
  5236. ; PHP Options/Info - PHP Options&Information
  5237. ; -----------------------------------------------------------------------------
  5238. [assert_options | Set/get the various assert flags, returns mixed]
  5239. assert_options(|int what, [mixed value])
  5240. [assert | Checks if assertion is FALSE, returns int]
  5241. assert(|mixed assertion)
  5242. [dl | Loads a PHP extension at runtime, returns int]
  5243. dl(|string library)
  5244. [extension_loaded | Find out whether an extension is loaded, returns bool]
  5245. extension_loaded(|string name)
  5246. [get_cfg_var | Gets the value of a PHP configuration option, returns string]
  5247. get_cfg_var(|string varname)
  5248. [get_current_user | Gets the name of the owner of the current PHP script, returns string]
  5249. get_current_user()|
  5250. [get_defined_constants | Returns an associative array with the names of all the constants and their values, returns array]
  5251. get_defined_constants()|
  5252. [get_extension_funcs | Returns an array with the names of the functions of a module, returns array]
  5253. get_extension_funcs(|string module_name)
  5254. [get_include_path | Gets the current include_path configuration option, returns string]
  5255. get_include_path()|
  5256. [get_included_files | Returns an array with the names of included or required files, returns array]
  5257. get_included_files()|
  5258. [get_loaded_extensions | Returns an array with the names of all modules compiled and loaded, returns array]
  5259. get_loaded_extensions()|
  5260. [get_magic_quotes_gpc | Gets the current active configuration setting of magic quotes gpc, returns int]
  5261. get_magic_quotes_gpc()|
  5262. [get_magic_quotes_runtime | Gets the current active configuration setting of magic_quotes_runtime, returns int]
  5263. get_magic_quotes_runtime()|
  5264. [get_required_files | Alias of get_included_files]
  5265. [getenv | Gets the value of an environment variable, returns string]
  5266. getenv(|string varname)
  5267. [getlastmod | Gets time of last page modification, returns int]
  5268. getlastmod()|
  5269. [getmygid | Get PHP script owner's GID, returns int]
  5270. getmygid()|
  5271. [getmyinode | Gets the inode of the current script, returns int]
  5272. getmyinode()|
  5273. [getmypid | Gets PHP's process ID, returns int]
  5274. getmypid()|
  5275. [getmyuid | Gets PHP script owner's UID, returns int]
  5276. getmyuid()|
  5277. [getopt | Gets options from the command line argument list, returns string]
  5278. getopt(|string options)
  5279. [getrusage | Gets the current resource usages, returns array]
  5280. getrusage(|[int who])
  5281. [ini_alter | Alias of ini_set]
  5282. [ini_get_all | Gets all configuration options, returns array]
  5283. ini_get_all(|[string extension])
  5284. [ini_get | Gets the value of a configuration option, returns string]
  5285. ini_get(|string varname)
  5286. [ini_restore | Restores the value of a configuration option, returns string]
  5287. ini_restore(|string varname)
  5288. [ini_set | Sets the value of a configuration option, returns string]
  5289. ini_set(|string varname, string newvalue)
  5290. [main | Dummy for main]
  5291. [memory_get_usage | Returns the amount of memory allocated to PHP, returns int]
  5292. memory_get_usage()|
  5293. [php_ini_scanned_files | Return a list of .ini files parsed from the additional ini dir, returns string]
  5294. php_ini_scanned_files()|
  5295. [php_logo_guid | Gets the logo guid, returns string]
  5296. php_logo_guid()|
  5297. [php_sapi_name | Returns the type of interface between web server and PHP, returns string]
  5298. php_sapi_name()|
  5299. [php_uname | Returns information about the operating system PHP was built on, returns string]
  5300. php_uname()|
  5301. [phpcredits | Prints out the credits for PHP, returns void]
  5302. phpcredits(|[int flag])
  5303. [phpinfo | Outputs lots of PHP information, returns int]
  5304. phpinfo(|[int what])
  5305. [phpversion | Gets the current PHP version, returns string]
  5306. phpversion()|
  5307. [putenv | Sets the value of an environment variable, returns void]
  5308. putenv(|string setting)
  5309. [restore_include_path | Restores the value of the include_path configuration option, returns void]
  5310. restore_include_path()|
  5311. [set_include_path | Sets the include_path configuration option, returns string]
  5312. set_include_path(|string new_include_path)
  5313. [set_magic_quotes_runtime | Sets the current active configuration setting of magic_quotes_runtime, returns bool]
  5314. set_magic_quotes_runtime(|int new_setting)
  5315. [set_time_limit | Limits the maximum execution time, returns void]
  5316. set_time_limit(|int seconds)
  5317. [version_compare | Compares two "PHP-standardized" version number strings, returns int]
  5318. version_compare(|string version1, string version2, [string operator])
  5319. [zend_logo_guid | Gets the zend guid, returns string]
  5320. zend_logo_guid()|
  5321. [zend_version | Gets the version of the current Zend engine, returns string]
  5322. zend_version()|
  5323. ; -----------------------------------------------------------------------------
  5324. ; POSIX - POSIX functions
  5325. ; -----------------------------------------------------------------------------
  5326. [posix_ctermid | Get path name of controlling terminal, returns string]
  5327. posix_ctermid()|
  5328. [posix_get_last_error | Retrieve the error number set by the last posix function that failed., returns int]
  5329. posix_get_last_error()|
  5330. [posix_getcwd | Pathname of current directory, returns string]
  5331. posix_getcwd()|
  5332. [posix_getegid | Return the effective group ID of the current process, returns int]
  5333. posix_getegid()|
  5334. [posix_geteuid | Return the effective user ID of the current process, returns int]
  5335. posix_geteuid()|
  5336. [posix_getgid | Return the real group ID of the current process, returns int]
  5337. posix_getgid()|
  5338. [posix_getgrgid | Return info about a group by group id, returns array]
  5339. posix_getgrgid(|int gid)
  5340. [posix_getgrnam | Return info about a group by name, returns array]
  5341. posix_getgrnam(|string name)
  5342. [posix_getgroups | Return the group set of the current process, returns array]
  5343. posix_getgroups()|
  5344. [posix_getlogin | Return login name, returns string]
  5345. posix_getlogin()|
  5346. [posix_getpgid | Get process group id for job control, returns int]
  5347. posix_getpgid(|int pid)
  5348. [posix_getpgrp | Return the current process group identifier, returns int]
  5349. posix_getpgrp()|
  5350. [posix_getpid | Return the current process identifier, returns int]
  5351. posix_getpid()|
  5352. [posix_getppid | Return the parent process identifier, returns int]
  5353. posix_getppid()|
  5354. [posix_getpwnam | Return info about a user by username, returns array]
  5355. posix_getpwnam(|string username)
  5356. [posix_getpwuid | Return info about a user by user id, returns array]
  5357. posix_getpwuid(|int uid)
  5358. [posix_getrlimit | Return info about system resource limits, returns array]
  5359. posix_getrlimit()|
  5360. [posix_getsid | Get the current sid of the process, returns int]
  5361. posix_getsid(|int pid)
  5362. [posix_getuid | Return the real user ID of the current process, returns int]
  5363. posix_getuid()|
  5364. [posix_isatty | Determine if a file descriptor is an interactive terminal, returns bool]
  5365. posix_isatty(|int fd)
  5366. [posix_kill | Send a signal to a process, returns bool]
  5367. posix_kill(|int pid, int sig)
  5368. [posix_mkfifo | Create a fifo special file (a named pipe), returns bool]
  5369. posix_mkfifo(|string pathname, int mode)
  5370. [posix_setegid | Set the effective GID of the current process, returns bool]
  5371. posix_setegid(|int gid)
  5372. [posix_seteuid | Set the effective UID of the current process, returns bool]
  5373. posix_seteuid(|int uid)
  5374. [posix_setgid | Set the GID of the current process, returns bool]
  5375. posix_setgid(|int gid)
  5376. [posix_setpgid | set process group id for job control, returns int]
  5377. posix_setpgid(|int pid, int pgid)
  5378. [posix_setsid | Make the current process a session leader, returns int]
  5379. posix_setsid()|
  5380. [posix_setuid | Set the UID of the current process, returns bool]
  5381. posix_setuid(|int uid)
  5382. [posix_strerror | Retrieve the system error message associated with the given errno., returns string]
  5383. posix_strerror(|int errno)
  5384. [posix_times | Get process times, returns array]
  5385. posix_times()|
  5386. [posix_ttyname | Determine terminal device name, returns string]
  5387. posix_ttyname(|int fd)
  5388. [posix_uname | Get system name, returns array]
  5389. posix_uname()|
  5390. ; -----------------------------------------------------------------------------
  5391. ; PostgreSQL - PostgreSQL functions
  5392. ; -----------------------------------------------------------------------------
  5393. [pg_affected_rows | Returns number of affected records (tuples), returns int]
  5394. pg_affected_rows(|resource result)
  5395. [pg_cancel_query | Cancel asynchronous query, returns bool]
  5396. pg_cancel_query(|resource connection)
  5397. [pg_client_encoding | Gets the client encoding, returns string]
  5398. pg_client_encoding(|[resource connection])
  5399. [pg_close | Closes a PostgreSQL connection, returns bool]
  5400. pg_close(|resource connection)
  5401. [pg_connect | Open a PostgreSQL connection, returns resource]
  5402. pg_connect(|string connection_string)
  5403. [pg_connection_busy | Get connection is busy or not, returns bool]
  5404. pg_connection_busy(|resource connection)
  5405. [pg_connection_reset | Reset connection (reconnect), returns bool]
  5406. pg_connection_reset(|resource connection)
  5407. [pg_connection_status | Get connection status, returns int]
  5408. pg_connection_status(|resource connection)
  5409. [pg_convert | Convert associative array value into suitable for SQL statement., returns array]
  5410. pg_convert(|resource connection, string table_name, array assoc_array, [int options])
  5411. [pg_copy_from | Insert records into a table from an array, returns bool]
  5412. pg_copy_from(|resource connection, string table_name, array rows, [string delimiter], [string null_as])
  5413. [pg_copy_to | Copy a table to an array, returns array]
  5414. pg_copy_to(|resource connection, string table_name, [string delimiter], [string null_as])
  5415. [pg_dbname | Get the database name, returns string]
  5416. pg_dbname(|resource connection)
  5417. [pg_delete | Deletes records., returns mixed]
  5418. pg_delete(|resource connection, string table_name, array assoc_array, [int options])
  5419. [pg_end_copy | Sync with PostgreSQL backend, returns bool]
  5420. pg_end_copy(|[resource connection])
  5421. [pg_escape_bytea | Escape binary for bytea type, returns string]
  5422. pg_escape_bytea(|string data)
  5423. [pg_escape_string | Escape string for text/char type, returns string]
  5424. pg_escape_string(|string data)
  5425. [pg_fetch_all | Fetches all rows from a result as an array, returns array]
  5426. pg_fetch_all(|resource result)
  5427. [pg_fetch_array | Fetch a row as an array, returns array]
  5428. pg_fetch_array(|resource result, [int row], [int result_type])
  5429. [pg_fetch_assoc | Fetch a row as an associative array, returns array]
  5430. pg_fetch_assoc(|resource result, [int row])
  5431. [pg_fetch_object | Fetch a row as an object, returns object]
  5432. pg_fetch_object(|resource result, [int row], [int result_type])
  5433. [pg_fetch_result | Returns values from a result resource, returns mixed]
  5434. pg_fetch_result(|resource result, int row, mixed field)
  5435. [pg_fetch_row | Get a row as an enumerated array, returns array]
  5436. pg_fetch_row(|resource result, int row)
  5437. [pg_field_is_null | Test if a field is NULL, returns int]
  5438. pg_field_is_null(|resource result, int row, mixed field)
  5439. [pg_field_name | Returns the name of a field, returns string]
  5440. pg_field_name(|resource result, int field_number)
  5441. [pg_field_num | Returns the field number of the named field, returns int]
  5442. pg_field_num(|resource result, string field_name)
  5443. [pg_field_prtlen | Returns the printed length, returns int]
  5444. pg_field_prtlen(|resource result, int row_number, string field_name)
  5445. [pg_field_size | Returns the internal storage size of the named field, returns int]
  5446. pg_field_size(|resource result, int field_number)
  5447. [pg_field_type | Returns the type name for the corresponding field number, returns string]
  5448. pg_field_type(|resource result, int field_number)
  5449. [pg_free_result | Free result memory, returns bool]
  5450. pg_free_result(|resource result)
  5451. [pg_get_notify | Ping database connection, returns array]
  5452. pg_get_notify(|resource connection, [int result_type])
  5453. [pg_get_pid | Ping database connection, returns int]
  5454. pg_get_pid(|resource connection)
  5455. [pg_get_result | Get asynchronous query result, returns resource]
  5456. pg_get_result(|[resource connection])
  5457. [pg_host | Returns the host name associated with the connection, returns string]
  5458. pg_host(|resource connection)
  5459. [pg_insert | Insert array into table., returns bool]
  5460. pg_insert(|resource connection, string table_name, array assoc_array, [int options])
  5461. [pg_last_error | Get the last error message string of a connection, returns string]
  5462. pg_last_error(|[resource connection])
  5463. [pg_last_notice | Returns the last notice message from PostgreSQL server, returns string]
  5464. pg_last_notice(|resource connection)
  5465. [pg_last_oid | Returns the last object's oid, returns int]
  5466. pg_last_oid(|resource result)
  5467. [pg_lo_close | Close a large object, returns bool]
  5468. pg_lo_close(|resource large_object)
  5469. [pg_lo_create | Create a large object, returns int]
  5470. pg_lo_create(|resource connection)
  5471. [pg_lo_export | Export a large object to file, returns bool]
  5472. pg_lo_export(|int oid, string pathname, [resource connection])
  5473. [pg_lo_import | Import a large object from file, returns int]
  5474. pg_lo_import(|[resource connection], string pathname)
  5475. [pg_lo_open | Open a large object, returns resource]
  5476. pg_lo_open(|resource connection, int oid, string mode)
  5477. [pg_lo_read_all | Reads an entire large object and send straight to browser, returns int]
  5478. pg_lo_read_all(|resource large_object)
  5479. [pg_lo_read | Read a large object, returns string]
  5480. pg_lo_read(|resource large_object, int len)
  5481. [pg_lo_seek | Seeks position of large object, returns bool]
  5482. pg_lo_seek(|resource large_object, int offset, [int whence])
  5483. [pg_lo_tell | Returns current position of large object, returns int]
  5484. pg_lo_tell(|resource large_object)
  5485. [pg_lo_unlink | Delete a large object, returns bool]
  5486. pg_lo_unlink(|resource connection, int oid)
  5487. [pg_lo_write | Write a large object, returns int]
  5488. pg_lo_write(|resource large_object, string data)
  5489. [pg_meta_data | Get meta data for table., returns array]
  5490. pg_meta_data(|resource connection, string table_name)
  5491. [pg_num_fields | Returns the number of fields, returns int]
  5492. pg_num_fields(|resource result)
  5493. [pg_num_rows | Returns the number of rows, returns int]
  5494. pg_num_rows(|resource result)
  5495. [pg_options | Get the options associated with the connection, returns string]
  5496. pg_options(|resource connection)
  5497. [pg_pconnect | Open a persistent PostgreSQL connection, returns resource]
  5498. pg_pconnect(|string connection_string)
  5499. [pg_ping | Ping database connection, returns bool]
  5500. pg_ping(|resource connection)
  5501. [pg_port | Return the port number associated with the connection, returns int]
  5502. pg_port(|resource connection)
  5503. [pg_put_line | Send a NULL-terminated string to PostgreSQL backend, returns bool]
  5504. pg_put_line(|[resource connection], string data)
  5505. [pg_query | Execute a query, returns resource]
  5506. pg_query(|resource connection, string query)
  5507. [pg_result_error | Get error message associated with result, returns string]
  5508. pg_result_error(|resource result)
  5509. [pg_result_seek | Set internal row offset in result resource, returns array]
  5510. pg_result_seek(|resource result, int offset)
  5511. [pg_result_status | Get status of query result, returns int]
  5512. pg_result_status(|resource result)
  5513. [pg_select | Select records., returns array]
  5514. pg_select(|resource connection, string table_name, array assoc_array, [int options])
  5515. [pg_send_query | Sends asynchronous query, returns bool]
  5516. pg_send_query(|resource connection, string query)
  5517. [pg_set_client_encoding | Set the client encoding, returns int]
  5518. pg_set_client_encoding(|[resource connection], string encoding)
  5519. [pg_trace | Enable tracing a PostgreSQL connection, returns bool]
  5520. pg_trace(|string pathname, [string mode], [resource connection])
  5521. [pg_tty | Return the tty name associated with the connection, returns string]
  5522. pg_tty(|resource connection)
  5523. [pg_unescape_bytea | Escape binary for bytea type, returns string]
  5524. pg_unescape_bytea(|string data)
  5525. [pg_untrace | Disable tracing of a PostgreSQL connection, returns bool]
  5526. pg_untrace(|[resource connection])
  5527. [pg_update | Update table., returns mixed]
  5528. pg_update(|resource connection, string table_name, array data, array condition, [int options])
  5529. ; -----------------------------------------------------------------------------
  5530. ; PCNTL - Process Control Functions
  5531. ; -----------------------------------------------------------------------------
  5532. [pcntl_exec | Executes specified program in current process space, returns bool]
  5533. pcntl_exec(|string path, [array args], [array envs])
  5534. [pcntl_fork | Forks the currently running process, returns int]
  5535. pcntl_fork()|
  5536. [pcntl_signal | Installs a signal handler, returns bool]
  5537. pcntl_signal(|int signo, callback handle, [bool restart_syscalls])
  5538. [pcntl_waitpid | Waits on or returns the status of a forked child, returns int]
  5539. pcntl_waitpid(|int pid, int &status, int options)
  5540. [pcntl_wexitstatus | Returns the return code of a terminated child, returns int]
  5541. pcntl_wexitstatus(|int status)
  5542. [pcntl_wifexited | Returns TRUE if status code represents a successful exit, returns int]
  5543. pcntl_wifexited(|int status)
  5544. [pcntl_wifsignaled | Returns TRUE if status code represents a termination due to a signal, returns int]
  5545. pcntl_wifsignaled(|int status)
  5546. [pcntl_wifstopped | Returns TRUE if child process is currently stopped, returns int]
  5547. pcntl_wifstopped(|int status)
  5548. [pcntl_wstopsig | Returns the signal which caused the child to stop, returns int]
  5549. pcntl_wstopsig(|int status)
  5550. [pcntl_wtermsig | Returns the signal which caused the child to terminate, returns int]
  5551. pcntl_wtermsig(|int status)
  5552. ; -----------------------------------------------------------------------------
  5553. ; Program Execution - Program Execution functions
  5554. ; -----------------------------------------------------------------------------
  5555. [escapeshellarg | escape a string to be used as a shell argument, returns string]
  5556. escapeshellarg(|string arg)
  5557. [escapeshellcmd | escape shell metacharacters, returns string]
  5558. escapeshellcmd(|string command)
  5559. [exec | Execute an external program, returns string]
  5560. exec(|string command, [array output], [int return_var])
  5561. [passthru | Execute an external program and display raw output, returns void]
  5562. passthru(|string command, [int return_var])
  5563. [proc_close | Close a process opened by proc_open and return the exit code of that process., returns int]
  5564. proc_close(|resource process)
  5565. [proc_get_status | Get information about a process opened by proc_open, returns array]
  5566. proc_get_status(|resource process)
  5567. [proc_nice | Change the priority of the current process, returns bool]
  5568. proc_nice(|int priority)
  5569. [proc_open | Execute a command and open file pointers for input/output, returns resource]
  5570. proc_open(|string cmd, array descriptorspec, array pipes)
  5571. [proc_terminate | kills a process opened by proc_open, returns int]
  5572. proc_terminate(|resource process, [int signal])
  5573. [shell_exec | Execute command via shell and return the complete output as a string, returns string]
  5574. shell_exec(|string cmd)
  5575. [system | Execute an external program and display the output, returns string]
  5576. system(|string command, [int return_var])
  5577. ; -----------------------------------------------------------------------------
  5578. ; Printer - Printer functions
  5579. ; -----------------------------------------------------------------------------
  5580. [printer_abort | Deletes the printer's spool file, returns void]
  5581. printer_abort(|resource handle)
  5582. [printer_close | Close an open printer connection, returns void]
  5583. printer_close(|resource handle)
  5584. [printer_create_brush | Create a new brush, returns mixed]
  5585. printer_create_brush(|int style, string color)
  5586. [printer_create_dc | Create a new device context, returns void]
  5587. printer_create_dc(|resource handle)
  5588. [printer_create_font | Create a new font, returns mixed]
  5589. printer_create_font(|string face, int height, int width, int font_weight, bool italic, bool underline, bool strikeout, int orientaton)
  5590. [printer_create_pen | Create a new pen, returns mixed]
  5591. printer_create_pen(|int style, int width, string color)
  5592. [printer_delete_brush | Delete a brush, returns bool]
  5593. printer_delete_brush(|resource handle)
  5594. [printer_delete_dc | Delete a device context, returns bool]
  5595. printer_delete_dc(|resource handle)
  5596. [printer_delete_font | Delete a font, returns bool]
  5597. printer_delete_font(|resource handle)
  5598. [printer_delete_pen | Delete a pen, returns bool]
  5599. printer_delete_pen(|resource handle)
  5600. [printer_draw_bmp | Draw a bmp, returns void]
  5601. printer_draw_bmp(|resource handle, string filename, int x, int y)
  5602. [printer_draw_chord | Draw a chord, returns void]
  5603. printer_draw_chord(|resource handle, int rec_x, int rec_y, int rec_x1, int rec_y1, int rad_x, int rad_y, int rad_x1, int rad_y1)
  5604. [printer_draw_elipse | Draw an ellipse, returns void]
  5605. printer_draw_elipse(|resource handle, int ul_x, int ul_y, int lr_x, int lr_y)
  5606. [printer_draw_line | Draw a line, returns void]
  5607. printer_draw_line(|resource printer_handle, int from_x, int from_y, int to_x, int to_y)
  5608. [printer_draw_pie | Draw a pie, returns void]
  5609. printer_draw_pie(|resource handle, int rec_x, int rec_y, int rec_x1, int rec_y1, int rad1_x, int rad1_y, int rad2_x, int rad2_y)
  5610. [printer_draw_rectangle | Draw a rectangle, returns void]
  5611. printer_draw_rectangle(|resource handle, int ul_x, int ul_y, int lr_x, int lr_y)
  5612. [printer_draw_roundrect | Draw a rectangle with rounded corners, returns void]
  5613. printer_draw_roundrect(|resource handle, int ul_x, int ul_y, int lr_x, int lr_y, int width, int height)
  5614. [printer_draw_text | Draw text, returns void]
  5615. printer_draw_text(|resource printer_handle, string text, int x, int y)
  5616. [printer_end_doc | Close document, returns bool]
  5617. printer_end_doc(|resource handle)
  5618. [printer_end_page | Close active page, returns bool]
  5619. printer_end_page(|resource handle)
  5620. [printer_get_option | Retrieve printer configuration data, returns mixed]
  5621. printer_get_option(|resource handle, string option)
  5622. [printer_list | Return an array of printers attached to the server, returns array]
  5623. printer_list(|int enumtype, [string name], [int level])
  5624. [printer_logical_fontheight | Get logical font height, returns int]
  5625. printer_logical_fontheight(|resource handle, int height)
  5626. [printer_open | Open connection to a printer, returns mixed]
  5627. printer_open(|[string devicename])
  5628. [printer_select_brush | Select a brush, returns void]
  5629. printer_select_brush(|resource printer_handle, resource brush_handle)
  5630. [printer_select_font | Select a font, returns void]
  5631. printer_select_font(|resource printer_handle, resource font_handle)
  5632. [printer_select_pen | Select a pen, returns void]
  5633. printer_select_pen(|resource printer_handle, resource pen_handle)
  5634. [printer_set_option | Configure the printer connection, returns bool]
  5635. printer_set_option(|resource handle, int option, mixed value)
  5636. [printer_start_doc | Start a new document, returns bool]
  5637. printer_start_doc(|resource handle, [string document])
  5638. [printer_start_page | Start a new page, returns bool]
  5639. printer_start_page(|resource handle)
  5640. [printer_write | Write data to the printer, returns bool]
  5641. printer_write(|resource handle, string content)
  5642. ; -----------------------------------------------------------------------------
  5643. ; Pspell - Pspell Functions
  5644. ; -----------------------------------------------------------------------------
  5645. [pspell_add_to_personal | Add the word to a personal wordlist, returns int]
  5646. pspell_add_to_personal(|int dictionary_link, string word)
  5647. [pspell_add_to_session | Add the word to the wordlist in the current session, returns int]
  5648. pspell_add_to_session(|int dictionary_link, string word)
  5649. [pspell_check | Check a word, returns bool]
  5650. pspell_check(|int dictionary_link, string word)
  5651. [pspell_clear_session | Clear the current session, returns int]
  5652. pspell_clear_session(|int dictionary_link)
  5653. [pspell_config_create | Create a config used to open a dictionary, returns int]
  5654. pspell_config_create(|string language, [string spelling], [string jargon], [string encoding])
  5655. [pspell_config_ignore | Ignore words less than N characters long, returns int]
  5656. pspell_config_ignore(|int dictionary_link, int n)
  5657. [pspell_config_mode | Change the mode number of suggestions returned, returns int]
  5658. pspell_config_mode(|int dictionary_link, int mode)
  5659. [pspell_config_personal | Set a file that contains personal wordlist, returns int]
  5660. pspell_config_personal(|int dictionary_link, string file)
  5661. [pspell_config_repl | Set a file that contains replacement pairs, returns int]
  5662. pspell_config_repl(|int dictionary_link, string file)
  5663. [pspell_config_runtogether | Consider run-together words as valid compounds, returns int]
  5664. pspell_config_runtogether(|int dictionary_link, bool flag)
  5665. [pspell_config_save_repl | Determine whether to save a replacement pairs list along with the wordlist, returns int]
  5666. pspell_config_save_repl(|int dictionary_link, bool flag)
  5667. [pspell_new_config | Load a new dictionary with settings based on a given config, returns int]
  5668. pspell_new_config(|int config)
  5669. [pspell_new_personal | Load a new dictionary with personal wordlist, returns int]
  5670. pspell_new_personal(|string personal, string language, [string spelling], [string jargon], [string encoding], [int mode])
  5671. [pspell_new | Load a new dictionary, returns int]
  5672. pspell_new(|string language, [string spelling], [string jargon], [string encoding], [int mode])
  5673. [pspell_save_wordlist | Save the personal wordlist to a file, returns int]
  5674. pspell_save_wordlist(|int dictionary_link)
  5675. [pspell_store_replacement | Store a replacement pair for a word, returns int]
  5676. pspell_store_replacement(|int dictionary_link, string misspelled, string correct)
  5677. [pspell_suggest | Suggest spellings of a word, returns array]
  5678. pspell_suggest(|int dictionary_link, string word)
  5679. ; -----------------------------------------------------------------------------
  5680. ; Readline - GNU Readline
  5681. ; -----------------------------------------------------------------------------
  5682. [readline_add_history | Adds a line to the history, returns void]
  5683. readline_add_history(|string line)
  5684. [readline_clear_history | Clears the history, returns bool]
  5685. readline_clear_history()|
  5686. [readline_completion_function | Registers a completion function, returns bool]
  5687. readline_completion_function(|string line)
  5688. [readline_info | Gets/sets various internal readline variables, returns mixed]
  5689. readline_info(|[string varname], [string newvalue])
  5690. [readline_list_history | Lists the history, returns array]
  5691. readline_list_history()|
  5692. [readline_read_history | Reads the history, returns bool]
  5693. readline_read_history(|string filename)
  5694. [readline_write_history | Writes the history, returns bool]
  5695. readline_write_history(|string filename)
  5696. [readline | Reads a line, returns string]
  5697. readline(|[string prompt])
  5698. ; -----------------------------------------------------------------------------
  5699. ; Recode - GNU Recode functions
  5700. ; -----------------------------------------------------------------------------
  5701. [recode_file | Recode from file to file according to recode request, returns bool]
  5702. recode_file(|string request, resource input, resource output)
  5703. [recode_string | Recode a string according to a recode request, returns string]
  5704. recode_string(|string request, string string)
  5705. [recode | Alias for recode_string]
  5706. ; -----------------------------------------------------------------------------
  5707. ; PCRE - Regular Expression Functions (Perl-Compatible)
  5708. ; -----------------------------------------------------------------------------
  5709. [Pattern Modifiers | Describes possible modifiers in regex patterns]
  5710. [Pattern Syntax | Describes PCRE regex syntax]
  5711. [preg_grep | Return array entries that match the pattern, returns array]
  5712. preg_grep(|string pattern, array input)
  5713. [preg_match_all | Perform a global regular expression match, returns int]
  5714. preg_match_all(|string pattern, string subject, array matches, [int flags])
  5715. [preg_match | Perform a regular expression match, returns int]
  5716. preg_match(|string pattern, string subject, [array matches], [int flags])
  5717. [preg_quote | Quote regular expression characters, returns string]
  5718. preg_quote(|string str, [string delimiter])
  5719. [preg_replace_callback | Perform a regular expression search and replace using a callback, returns mixed]
  5720. preg_replace_callback(|mixed pattern, callback callback, mixed subject, [int limit])
  5721. [preg_replace | Perform a regular expression search and replace, returns mixed]
  5722. preg_replace(|mixed pattern, mixed replacement, mixed subject, [int limit])
  5723. [preg_split | Split string by a regular expression, returns array]
  5724. preg_split(|string pattern, string subject, [int limit], [int flags])
  5725. ; -----------------------------------------------------------------------------
  5726. ; qtdom - qtdom functions
  5727. ; -----------------------------------------------------------------------------
  5728. [qdom_error | Returns the error string from the last QDOM operation or FALSE if no errors occured, returns string]
  5729. qdom_error()|
  5730. [qdom_tree | creates a tree of an xml string, returns object]
  5731. qdom_tree(|string )
  5732. ; -----------------------------------------------------------------------------
  5733. ; Regexps - Regular Expression Functions (POSIX Extended)
  5734. ; -----------------------------------------------------------------------------
  5735. [ereg_replace | Replace regular expression, returns string]
  5736. ereg_replace(|string pattern, string replacement, string string)
  5737. [ereg | Regular expression match, returns bool]
  5738. ereg(|string pattern, string string, [array regs])
  5739. [eregi_replace | replace regular expression case insensitive, returns string]
  5740. eregi_replace(|string pattern, string replacement, string string)
  5741. [eregi | case insensitive regular expression match, returns bool]
  5742. eregi(|string pattern, string string, [array regs])
  5743. [split | split string into array by regular expression, returns array]
  5744. split(|string pattern, string string, [int limit])
  5745. [spliti | Split string into array by regular expression case insensitive, returns array]
  5746. spliti(|string pattern, string string, [int limit])
  5747. [sql_regcase | Make regular expression for case insensitive match, returns string]
  5748. sql_regcase(|string string)
  5749. ; -----------------------------------------------------------------------------
  5750. ; Semaphore - Semaphore, Shared Memory and IPC Functions
  5751. ; -----------------------------------------------------------------------------
  5752. [ftok | Convert a pathname and a project identifier to a System V IPC key, returns int]
  5753. ftok(|string pathname, string proj)
  5754. [msg_get_queue | Create or attach to a message queue, returns int]
  5755. msg_get_queue(|int key, [int perms])
  5756. [msg_receive | Receive a message from a message queue, returns bool]
  5757. msg_receive(|int queue, int desiredmsgtype, int msgtype, int maxsize, mixed message, [bool unserialize], [int flags], [int errorcode])
  5758. [msg_remove_queue | Destroy a message queue, returns bool]
  5759. msg_remove_queue(|int queue)
  5760. [msg_send | Send a message to a message queue, returns bool]
  5761. msg_send(|int queue, int msgtype, mixed message, [bool serialize], [bool blocking], [int errorcode])
  5762. [msg_set_queue | Set information in the message queue data structure, returns bool]
  5763. msg_set_queue(|int queue, array data)
  5764. [msg_stat_queue | Returns information from the message queue data structure, returns array]
  5765. msg_stat_queue(|int queue)
  5766. [sem_acquire | Acquire a semaphore, returns bool]
  5767. sem_acquire(|int sem_identifier)
  5768. [sem_get | Get a semaphore id, returns int]
  5769. sem_get(|int key, [int max_acquire], [int perm])
  5770. [sem_release | Release a semaphore, returns bool]
  5771. sem_release(|int sem_identifier)
  5772. [sem_remove | Remove a semaphore, returns bool]
  5773. sem_remove(|int sem_identifier)
  5774. [shm_attach | Creates or open a shared memory segment, returns int]
  5775. shm_attach(|int key, [int memsize], [int perm])
  5776. [shm_detach | Disconnects from shared memory segment, returns bool]
  5777. shm_detach(|int shm_identifier)
  5778. [shm_get_var | Returns a variable from shared memory, returns mixed]
  5779. shm_get_var(|int id, int variable_key)
  5780. [shm_put_var | Inserts or updates a variable in shared memory, returns int]
  5781. shm_put_var(|int shm_identifier, int variable_key, mixed variable)
  5782. [shm_remove_var | Removes a variable from shared memory, returns int]
  5783. shm_remove_var(|int id, int variable_key)
  5784. [shm_remove | Removes shared memory from Unix systems, returns int]
  5785. shm_remove(|int shm_identifier)
  5786. ; -----------------------------------------------------------------------------
  5787. ; SESAM - SESAM database functions
  5788. ; -----------------------------------------------------------------------------
  5789. [sesam_affected_rows | Get number of rows affected by an immediate query, returns int]
  5790. sesam_affected_rows(|string result_id)
  5791. [sesam_commit | Commit pending updates to the SESAM database, returns bool]
  5792. sesam_commit()|
  5793. [sesam_connect | Open SESAM database connection, returns bool]
  5794. sesam_connect(|string catalog, string schema, string user)
  5795. [sesam_diagnostic | Return status information for last SESAM call, returns array]
  5796. sesam_diagnostic()|
  5797. [sesam_disconnect | Detach from SESAM connection, returns bool]
  5798. sesam_disconnect()|
  5799. [sesam_errormsg | Returns error message of last SESAM call, returns string]
  5800. sesam_errormsg()|
  5801. [sesam_execimm | Execute an "immediate" SQL-statement, returns string]
  5802. sesam_execimm(|string query)
  5803. [sesam_fetch_array | Fetch one row as an associative array, returns array]
  5804. sesam_fetch_array(|string result_id, [int whence], [int offset])
  5805. [sesam_fetch_result | Return all or part of a query result, returns mixed]
  5806. sesam_fetch_result(|string result_id, [int max_rows])
  5807. [sesam_fetch_row | Fetch one row as an array, returns array]
  5808. sesam_fetch_row(|string result_id, [int whence], [int offset])
  5809. [sesam_field_array | Return meta information about individual columns in a result, returns array]
  5810. sesam_field_array(|string result_id)
  5811. [sesam_field_name | Return one column name of the result set, returns int]
  5812. sesam_field_name(|string result_id, int index)
  5813. [sesam_free_result | Releases resources for the query, returns int]
  5814. sesam_free_result(|string result_id)
  5815. [sesam_num_fields | Return the number of fields/columns in a result set, returns int]
  5816. sesam_num_fields(|string result_id)
  5817. [sesam_query | Perform a SESAM SQL query and prepare the result, returns string]
  5818. sesam_query(|string query, [bool scrollable])
  5819. [sesam_rollback | Discard any pending updates to the SESAM database, returns bool]
  5820. sesam_rollback()|
  5821. [sesam_seek_row | Set scrollable cursor mode for subsequent fetches, returns bool]
  5822. sesam_seek_row(|string result_id, int whence, [int offset])
  5823. [sesam_settransaction | Set SESAM transaction parameters, returns bool]
  5824. sesam_settransaction(|int isolation_level, int read_only)
  5825. ; -----------------------------------------------------------------------------
  5826. ; Sessions - Session handling functions
  5827. ; -----------------------------------------------------------------------------
  5828. [session_cache_expire | Return current cache expire, returns int]
  5829. session_cache_expire(|[int new_cache_expire])
  5830. [session_cache_limiter | Get and/or set the current cache limiter, returns string]
  5831. session_cache_limiter(|[string cache_limiter])
  5832. [session_decode | Decodes session data from a string, returns bool]
  5833. session_decode(|string data)
  5834. [session_destroy | Destroys all data registered to a session, returns bool]
  5835. session_destroy()|
  5836. [session_encode | Encodes the current session data as a string, returns string]
  5837. session_encode()|
  5838. [session_get_cookie_params | Get the session cookie parameters, returns array]
  5839. session_get_cookie_params()|
  5840. [session_id | Get and/or set the current session id, returns string]
  5841. session_id(|[string id])
  5842. [session_is_registered | Find out whether a global variable is registered in a session, returns bool]
  5843. session_is_registered(|string name)
  5844. [session_module_name | Get and/or set the current session module, returns string]
  5845. session_module_name(|[string module])
  5846. [session_name | Get and/or set the current session name, returns string]
  5847. session_name(|[string name])
  5848. [session_regenerate_id | Update the current session id with a newly generated one, returns bool]
  5849. session_regenerate_id()|
  5850. [session_register | Register one or more global variables with the current session, returns bool]
  5851. session_register(|mixed name, [mixed ...])
  5852. [session_save_path | Get and/or set the current session save path, returns string]
  5853. session_save_path(|[string path])
  5854. [session_set_cookie_params | Set the session cookie parameters, returns void]
  5855. session_set_cookie_params(|int lifetime, [string path], [string domain], [bool secure])
  5856. [session_set_save_handler | Sets user-level session storage functions, returns bool]
  5857. session_set_save_handler(|string open, string close, string read, string write, string destroy, string gc)
  5858. [session_start | Initialize session data, returns bool]
  5859. session_start()|
  5860. [session_unregister | Unregister a global variable from the current session, returns bool]
  5861. session_unregister(|string name)
  5862. [session_unset | Free all session variables, returns void]
  5863. session_unset()|
  5864. [session_write_close | Write session data and end session, returns void]
  5865. session_write_close()|
  5866. ; -----------------------------------------------------------------------------
  5867. ; shmop - Shared Memory Functions
  5868. ; -----------------------------------------------------------------------------
  5869. [shmop_close | Close shared memory block, returns int]
  5870. shmop_close(|int shmid)
  5871. [shmop_delete | Delete shared memory block, returns int]
  5872. shmop_delete(|int shmid)
  5873. [shmop_open | Create or open shared memory block, returns int]
  5874. shmop_open(|int key, string flags, int mode, int size)
  5875. [shmop_read | Read data from shared memory block, returns string]
  5876. shmop_read(|int shmid, int start, int count)
  5877. [shmop_size | Get size of shared memory block, returns int]
  5878. shmop_size(|int shmid)
  5879. [shmop_write | Write data into shared memory block, returns int]
  5880. shmop_write(|int shmid, string data, int offset)
  5881. ; -----------------------------------------------------------------------------
  5882. ; SQLite - SQLite
  5883. ; -----------------------------------------------------------------------------
  5884. [sqlite_array_query | Execute a query against a given database and returns an array., returns array]
  5885. sqlite_array_query(|resource dbhandle, string query, [int result_type], [bool decode_binary])
  5886. [sqlite_busy_timeout | Set busy timeout duration, or disable busy handlers., returns void]
  5887. sqlite_busy_timeout(|resource dbhandle, int milliseconds)
  5888. [sqlite_changes | Returns the number of rows that were changed by the most recent SQL statement., returns int]
  5889. sqlite_changes(|resource dbhandle)
  5890. [sqlite_close | Closes an open SQLite database., returns void]
  5891. sqlite_close(|resource dbhandle)
  5892. [sqlite_column | Fetches a column from the current row of a result set., returns mixed]
  5893. sqlite_column(|resource result, mixed index_or_name, [bool decode_binary])
  5894. [sqlite_create_aggregate | Register an aggregating UDF for use in SQL statements., returns bool]
  5895. sqlite_create_aggregate(|resource dbhandle, string function_name, mixed step_func, mixed finalize_func, [int num_args])
  5896. [sqlite_create_function | Registers a "regular" User Defined Function for use in SQL statements., returns bool]
  5897. sqlite_create_function(|resource dbhandle, string function_name, mixed callback, [int num_args])
  5898. [sqlite_current | Fetches the current row from a result set as an array., returns array]
  5899. sqlite_current(|resource result, [int result_type], [bool decode_binary])
  5900. [sqlite_error_string | Returns the textual description of an error code., returns string]
  5901. sqlite_error_string(|int error_code)
  5902. [sqlite_escape_string | Escapes a string for use as a query parameter, returns string]
  5903. sqlite_escape_string(|string item)
  5904. [sqlite_fetch_array | Fetches the next row from a result set as an array., returns array]
  5905. sqlite_fetch_array(|resource result, [int result_type], [bool decode_binary])
  5906. [sqlite_fetch_single | Fetches the first column of a result set as a string., returns string]
  5907. sqlite_fetch_single(|resource result, [int result_type], [bool decode_binary])
  5908. [sqlite_fetch_string | Alias of sqlite_fetch_single]
  5909. [sqlite_field_name | Returns the name of a particular field., returns string]
  5910. sqlite_field_name(|resource result, int field_index)
  5911. [sqlite_has_more | Returns whether or not more rows are available., returns bool]
  5912. sqlite_has_more(|resource result)
  5913. [sqlite_last_error | Returns the error code of the last error for a database., returns int]
  5914. sqlite_last_error(|resource dbhandle)
  5915. [sqlite_last_insert_rowid | Returns the rowid of the most recently inserted row., returns int]
  5916. sqlite_last_insert_rowid(|resource dbhandle)
  5917. [sqlite_libencoding | Returns the encoding of the linked SQLite library., returns string]
  5918. sqlite_libencoding()|
  5919. [sqlite_libversion | Returns the version of the linked SQLite library., returns string]
  5920. sqlite_libversion()|
  5921. [sqlite_next | Seek to the next row number., returns bool]
  5922. sqlite_next(|resource result)
  5923. [sqlite_num_fields | Returns the number of fields in a result set., returns int]
  5924. sqlite_num_fields(|resource result)
  5925. [sqlite_num_rows | Returns the number of rows in a buffered result set., returns int]
  5926. sqlite_num_rows(|resource result)
  5927. [sqlite_open | Opens a SQLite database. Will create the database if it does not exist, returns resource]
  5928. sqlite_open(|string filename, [int mode], [string &error_message])
  5929. [sqlite_popen | Opens a persistent handle to an SQLite database. Will create the database if it does not exist., returns resource]
  5930. sqlite_popen(|string filename, [int mode], [string &error_message])
  5931. [sqlite_query | Executes a query against a given database and returns a result handle., returns resource]
  5932. sqlite_query(|resource dbhandle, string query)
  5933. [sqlite_rewind | Seek to the first row number., returns bool]
  5934. sqlite_rewind(|resource result)
  5935. [sqlite_seek | Seek to a particular row number of a buffered result set., returns bool]
  5936. sqlite_seek(|resource result, int rownum)
  5937. [sqlite_udf_decode_binary | Decode binary data passed as parameters to an UDF., returns string]
  5938. sqlite_udf_decode_binary(|string data)
  5939. [sqlite_udf_encode_binary | Encode binary data before returning it from an UDF., returns string]
  5940. sqlite_udf_encode_binary(|string data)
  5941. [sqlite_unbuffered_query | Execute a query that does not prefetch and buffer all data, returns resource]
  5942. sqlite_unbuffered_query(|resource dbhandle, string query)
  5943. ; -----------------------------------------------------------------------------
  5944. ; SWF - Shockwave Flash functions
  5945. ; -----------------------------------------------------------------------------
  5946. [swf_actiongeturl | Get a URL from a Shockwave Flash movie, returns void]
  5947. swf_actiongeturl(|string url, string target)
  5948. [swf_actiongotoframe | Play a frame and then stop, returns void]
  5949. swf_actiongotoframe(|int framenumber)
  5950. [swf_actiongotolabel | Display a frame with the specified label, returns void]
  5951. swf_actiongotolabel(|string label)
  5952. [swf_actionnextframe | Go foward one frame, returns void]
  5953. swf_actionnextframe()|
  5954. [swf_actionplay | Start playing the flash movie from the current frame, returns void]
  5955. swf_actionplay()|
  5956. [swf_actionprevframe | Go backwards one frame, returns void]
  5957. swf_actionprevframe()|
  5958. [swf_actionsettarget | Set the context for actions, returns void]
  5959. swf_actionsettarget(|string target)
  5960. [swf_actionstop | Stop playing the flash movie at the current frame, returns void]
  5961. swf_actionstop()|
  5962. [swf_actiontogglequality | Toggle between low and high quality, returns void]
  5963. swf_actiontogglequality()|
  5964. [swf_actionwaitforframe | Skip actions if a frame has not been loaded, returns void]
  5965. swf_actionwaitforframe(|int framenumber, int skipcount)
  5966. [swf_addbuttonrecord | Controls location, appearance and active area of the current button, returns void]
  5967. swf_addbuttonrecord(|int states, int shapeid, int depth)
  5968. [swf_addcolor | Set the global add color to the rgba value specified, returns void]
  5969. swf_addcolor(|float r, float g, float b, float a)
  5970. [swf_closefile | Close the current Shockwave Flash file, returns void]
  5971. swf_closefile(|[int return_file])
  5972. [swf_definebitmap | Define a bitmap, returns void]
  5973. swf_definebitmap(|int objid, string image_name)
  5974. [swf_definefont | Defines a font, returns void]
  5975. swf_definefont(|int fontid, string fontname)
  5976. [swf_defineline | Define a line, returns void]
  5977. swf_defineline(|int objid, float x1, float y1, float x2, float y2, float width)
  5978. [swf_definepoly | Define a polygon, returns void]
  5979. swf_definepoly(|int objid, array coords, int npoints, float width)
  5980. [swf_definerect | Define a rectangle, returns void]
  5981. swf_definerect(|int objid, float x1, float y1, float x2, float y2, float width)
  5982. [swf_definetext | Define a text string, returns void]
  5983. swf_definetext(|int objid, string str, int docenter)
  5984. [swf_endbutton | End the definition of the current button, returns void]
  5985. swf_endbutton()|
  5986. [swf_enddoaction | End the current action, returns void]
  5987. swf_enddoaction()|
  5988. [swf_endshape | Completes the definition of the current shape, returns void]
  5989. swf_endshape()|
  5990. [swf_endsymbol | End the definition of a symbol, returns void]
  5991. swf_endsymbol()|
  5992. [swf_fontsize | Change the font size, returns void]
  5993. swf_fontsize(|float size)
  5994. [swf_fontslant | Set the font slant, returns void]
  5995. swf_fontslant(|float slant)
  5996. [swf_fonttracking | Set the current font tracking, returns void]
  5997. swf_fonttracking(|float tracking)
  5998. [swf_getbitmapinfo | Get information about a bitmap, returns array]
  5999. swf_getbitmapinfo(|int bitmapid)
  6000. [swf_getfontinfo | The height in pixels of a capital A and a lowercase x, returns array]
  6001. swf_getfontinfo()|
  6002. [swf_getframe | Get the frame number of the current frame, returns int]
  6003. swf_getframe()|
  6004. [swf_labelframe | Label the current frame, returns void]
  6005. swf_labelframe(|string name)
  6006. [swf_lookat | Define a viewing transformation, returns void]
  6007. swf_lookat(|float view_x, float view_y, float view_z, float reference_x, float reference_y, float reference_z, float twist)
  6008. [swf_modifyobject | Modify an object, returns void]
  6009. swf_modifyobject(|int depth, int how)
  6010. [swf_mulcolor | Sets the global multiply color to the rgba value specified, returns void]
  6011. swf_mulcolor(|float r, float g, float b, float a)
  6012. [swf_nextid | Returns the next free object id, returns int]
  6013. swf_nextid()|
  6014. [swf_oncondition | Describe a transition used to trigger an action list, returns void]
  6015. swf_oncondition(|int transition)
  6016. [swf_openfile | Open a new Shockwave Flash file, returns void]
  6017. swf_openfile(|string filename, float width, float height, float framerate, float r, float g, float b)
  6018. [swf_ortho2 | Defines 2D orthographic mapping of user coordinates onto the current viewport, returns void]
  6019. swf_ortho2(|float xmin, float xmax, float ymin, float ymax)
  6020. [swf_ortho | Defines an orthographic mapping of user coordinates onto the current viewport, returns void]
  6021. swf_ortho(|float xmin, float xmax, float ymin, float ymax, float zmin, float zmax)
  6022. [swf_perspective | Define a perspective projection transformation, returns void]
  6023. swf_perspective(|float fovy, float aspect, float near, float far)
  6024. [swf_placeobject | Place an object onto the screen, returns void]
  6025. swf_placeobject(|int objid, int depth)
  6026. [swf_polarview | Define the viewer's position with polar coordinates, returns void]
  6027. swf_polarview(|float dist, float azimuth, float incidence, float twist)
  6028. [swf_popmatrix | Restore a previous transformation matrix, returns void]
  6029. swf_popmatrix()|
  6030. [swf_posround | Enables or Disables the rounding of the translation when objects are placed or moved, returns void]
  6031. swf_posround(|int round)
  6032. [swf_pushmatrix | Push the current transformation matrix back unto the stack, returns void]
  6033. swf_pushmatrix()|
  6034. [swf_removeobject | Remove an object, returns void]
  6035. swf_removeobject(|int depth)
  6036. [swf_rotate | Rotate the current transformation, returns void]
  6037. swf_rotate(|float angle, string axis)
  6038. [swf_scale | Scale the current transformation, returns void]
  6039. swf_scale(|float x, float y, float z)
  6040. [swf_setfont | Change the current font, returns void]
  6041. swf_setfont(|int fontid)
  6042. [swf_setframe | Switch to a specified frame, returns void]
  6043. swf_setframe(|int framenumber)
  6044. [swf_shapearc | Draw a circular arc, returns void]
  6045. swf_shapearc(|float x, float y, float r, float ang1, float ang2)
  6046. [swf_shapecurveto3 | Draw a cubic bezier curve, returns void]
  6047. swf_shapecurveto3(|float x1, float y1, float x2, float y2, float x3, float y3)
  6048. [swf_shapecurveto | Draw a quadratic bezier curve between two points, returns void]
  6049. swf_shapecurveto(|float x1, float y1, float x2, float y2)
  6050. [swf_shapefillbitmapclip | Set current fill mode to clipped bitmap, returns void]
  6051. swf_shapefillbitmapclip(|int bitmapid)
  6052. [swf_shapefillbitmaptile | Set current fill mode to tiled bitmap, returns void]
  6053. swf_shapefillbitmaptile(|int bitmapid)
  6054. [swf_shapefilloff | Turns off filling, returns void]
  6055. swf_shapefilloff()|
  6056. [swf_shapefillsolid | Set the current fill style to the specified color, returns void]
  6057. swf_shapefillsolid(|float r, float g, float b, float a)
  6058. [swf_shapelinesolid | Set the current line style, returns void]
  6059. swf_shapelinesolid(|float r, float g, float b, float a, float width)
  6060. [swf_shapelineto | Draw a line, returns void]
  6061. swf_shapelineto(|float x, float y)
  6062. [swf_shapemoveto | Move the current position, returns void]
  6063. swf_shapemoveto(|float x, float y)
  6064. [swf_showframe | Display the current frame, returns void]
  6065. swf_showframe()|
  6066. [swf_startbutton | Start the definition of a button, returns void]
  6067. swf_startbutton(|int objid, int type)
  6068. [swf_startdoaction | Start a description of an action list for the current frame, returns void]
  6069. swf_startdoaction()|
  6070. [swf_startshape | Start a complex shape, returns void]
  6071. swf_startshape(|int objid)
  6072. [swf_startsymbol | Define a symbol, returns void]
  6073. swf_startsymbol(|int objid)
  6074. [swf_textwidth | Get the width of a string, returns float]
  6075. swf_textwidth(|string str)
  6076. [swf_translate | Translate the current transformations, returns void]
  6077. swf_translate(|float x, float y, float z)
  6078. [swf_viewport | Select an area for future drawing, returns void]
  6079. swf_viewport(|float xmin, float xmax, float ymin, float ymax)
  6080. ; -----------------------------------------------------------------------------
  6081. ; SNMP - SNMP functions
  6082. ; -----------------------------------------------------------------------------
  6083. [snmp_get_quick_print | Fetches the current value of the UCD library's quick_print setting, returns bool]
  6084. snmp_get_quick_print()|
  6085. [snmp_set_quick_print | Set the value of quick_print within the UCD SNMP library, returns void]
  6086. snmp_set_quick_print(|bool quick_print)
  6087. [snmpget | Fetch an SNMP object, returns string]
  6088. snmpget(|string hostname, string community, string object_id, [int timeout], [int retries])
  6089. [snmprealwalk | Return all objects including their respective object ID within the specified one, returns array]
  6090. snmprealwalk(|string host, string community, string object_id, [int timeout], [int retries])
  6091. [snmpset | Set an SNMP object, returns bool]
  6092. snmpset(|string hostname, string community, string object_id, string type, mixed value, [int timeout], [int retries])
  6093. [snmpwalk | Fetch all the SNMP objects from an agent, returns array]
  6094. snmpwalk(|string hostname, string community, string object_id, [int timeout], [int retries])
  6095. [snmpwalkoid | Query for a tree of information about a network entity, returns array]
  6096. snmpwalkoid(|string hostname, string community, string object_id, [int timeout], [int retries])
  6097. ; -----------------------------------------------------------------------------
  6098. ; Sockets - Socket functions
  6099. ; -----------------------------------------------------------------------------
  6100. [socket_accept | Accepts a connection on a socket, returns resource]
  6101. socket_accept(|resource socket)
  6102. [socket_bind | Binds a name to a socket, returns bool]
  6103. socket_bind(|resource socket, string address, [int port])
  6104. [socket_clear_error | Clears the error on the socket or the last error code, returns void]
  6105. socket_clear_error(|[resource socket])
  6106. [socket_close | Closes a socket resource, returns void]
  6107. socket_close(|resource socket)
  6108. [socket_connect | Initiates a connection on a socket, returns bool]
  6109. socket_connect(|resource socket, string address, [int port])
  6110. [socket_create_listen | Opens a socket on port to accept connections, returns resource]
  6111. socket_create_listen(|int port, [int backlog])
  6112. [socket_create_pair | Creates a pair of indistinguishable sockets and stores them in fds., returns bool]
  6113. socket_create_pair(|int domain, int type, int protocol, array &fd)
  6114. [socket_create | Create a socket (endpoint for communication), returns resource]
  6115. socket_create(|int domain, int type, int protocol)
  6116. [socket_get_option | Gets socket options for the socket, returns mixed]
  6117. socket_get_option(|resource socket, int level, int optname)
  6118. [socket_getpeername | Queries the remote side of the given socket which may either result in host/port or in a UNIX filesystem path, dependent on its type., returns bool]
  6119. socket_getpeername(|resource socket, string &addr, [int &port])
  6120. [socket_getsockname | Queries the local side of the given socket which may either result in host/port or in a UNIX filesystem path, dependent on its type., returns bool]
  6121. socket_getsockname(|resource socket, string &addr, [int &port])
  6122. [socket_iovec_add | Adds a new vector to the scatter/gather array, returns bool]
  6123. socket_iovec_add(|resource iovec, int iov_len)
  6124. [socket_iovec_alloc | Builds a 'struct iovec' for use with sendmsg, recvmsg, writev, and readv, returns resource]
  6125. socket_iovec_alloc(|int num_vectors, [int ])
  6126. [socket_iovec_delete | Deletes a vector from an array of vectors, returns bool]
  6127. socket_iovec_delete(|resource iovec, int iov_pos)
  6128. [socket_iovec_fetch | Returns the data held in the iovec specified by iovec_id[iovec_position], returns string]
  6129. socket_iovec_fetch(|resource iovec, int iovec_position)
  6130. [socket_iovec_free | Frees the iovec specified by iovec_id, returns bool]
  6131. socket_iovec_free(|resource iovec)
  6132. [socket_iovec_set | Sets the data held in iovec_id[iovec_position] to new_val, returns bool]
  6133. socket_iovec_set(|resource iovec, int iovec_position, string new_val)
  6134. [socket_last_error | Returns the last error on the socket, returns int]
  6135. socket_last_error(|[resource socket])
  6136. [socket_listen | Listens for a connection on a socket, returns bool]
  6137. socket_listen(|resource socket, [int backlog])
  6138. [socket_read | Reads a maximum of length bytes from a socket, returns string]
  6139. socket_read(|resource socket, int length, [int type])
  6140. [socket_readv | Reads from an fd, using the scatter-gather array defined by iovec_id, returns bool]
  6141. socket_readv(|resource socket, resource iovec_id)
  6142. [socket_recv | Receives data from a connected socket, returns int]
  6143. socket_recv(|resource socket, string &buf, int len, int flags)
  6144. [socket_recvfrom | Receives data from a socket, connected or not, returns int]
  6145. socket_recvfrom(|resource socket, string &buf, int len, int flags, string &name, [int &port])
  6146. [socket_recvmsg | Used to receive messages on a socket, whether connection-oriented or not, returns bool]
  6147. socket_recvmsg(|resource socket, resource iovec, array &control, int &controllen, int &flags, string &addr, [int &port])
  6148. [socket_select | Runs the select() system call on the given arrays of sockets with a specified timeout, returns int]
  6149. socket_select(|array &read, array &write, array &except, int tv_sec, [int tv_usec])
  6150. [socket_send | Sends data to a connected socket, returns int]
  6151. socket_send(|resource socket, string buf, int len, int flags)
  6152. [socket_sendmsg | Sends a message to a socket, regardless of whether it is connection-oriented or not, returns bool]
  6153. socket_sendmsg(|resource socket, resource iovec, int flags, string addr, [int port])
  6154. [socket_sendto | Sends a message to a socket, whether it is connected or not, returns int]
  6155. socket_sendto(|resource socket, string buf, int len, int flags, string addr, [int port])
  6156. [socket_set_block | Sets blocking mode on a socket resource, returns bool]
  6157. socket_set_block(|resource socket)
  6158. [socket_set_nonblock | Sets nonblocking mode for file descriptor fd, returns bool]
  6159. socket_set_nonblock(|resource socket)
  6160. [socket_set_option | Sets socket options for the socket, returns bool]
  6161. socket_set_option(|resource socket, int level, int optname, mixed optval)
  6162. [socket_shutdown | Shuts down a socket for receiving, sending, or both., returns bool]
  6163. socket_shutdown(|resource socket, [int how])
  6164. [socket_strerror | Return a string describing a socket error, returns string]
  6165. socket_strerror(|int errno)
  6166. [socket_write | Write to a socket, returns int]
  6167. socket_write(|resource socket, string buffer, [int length])
  6168. [socket_writev | Writes to a file descriptor, fd, using the scatter-gather array defined by iovec_id, returns bool]
  6169. socket_writev(|resource socket, resource iovec_id)
  6170. ; -----------------------------------------------------------------------------
  6171. ; Streams - Stream functions
  6172. ; -----------------------------------------------------------------------------
  6173. [stream_context_create | Create a streams context, returns resource]
  6174. stream_context_create(|array options)
  6175. [stream_context_get_options | Retrieve options for a stream/wrapper/context, returns array]
  6176. stream_context_get_options(|resource stream|context)
  6177. [stream_context_set_option | Sets an option for a stream/wrapper/context, returns bool]
  6178. stream_context_set_option(|resource context|stream, string wrapper, string option, mixed value)
  6179. [stream_context_set_params | Set parameters for a stream/wrapper/context, returns bool]
  6180. stream_context_set_params(|resource stream|context, array params)
  6181. [stream_copy_to_stream | Copies data from one stream to another, returns int]
  6182. stream_copy_to_stream(|resource source, resource dest, [int maxlength])
  6183. [stream_filter_append | Attach a filter to a stream., returns bool]
  6184. stream_filter_append(|resource stream, string filtername, [int read_write], [mixed params])
  6185. [stream_filter_prepend | Attach a filter to a stream., returns bool]
  6186. stream_filter_prepend(|resource stream, string filtername, [int read_write], [mixed params])
  6187. [stream_filter_register | Register a stream filter implemented as a PHP class derived from php_user_filter, returns bool]
  6188. stream_filter_register(|string filtername, string classname)
  6189. [stream_get_filters | Retrieve list of registered filters, returns array]
  6190. stream_get_filters()|
  6191. [stream_get_line | Gets line from stream resource up to a given delimiter, returns string]
  6192. stream_get_line(|resource handle, int length, string ending)
  6193. [stream_get_meta_data | Retrieves header/meta data from streams/file pointers, returns array]
  6194. stream_get_meta_data(|resource stream)
  6195. [stream_get_transports | Retrieve list of registered socket transports, returns array]
  6196. stream_get_transports()|
  6197. [stream_get_wrappers | Retrieve list of registered streams, returns array]
  6198. stream_get_wrappers()|
  6199. [stream_register_wrapper | Alias of stream_wrapper_register]
  6200. [stream_select | Runs the equivalent of the select() system call on the given arrays of streams with a timeout specified by tv_sec and tv_usec, returns int]
  6201. stream_select(|resource &read, resource &write, resource &except, int tv_sec, [int tv_usec])
  6202. [stream_set_blocking | Set blocking/non-blocking mode on a stream, returns bool]
  6203. stream_set_blocking(|resource stream, int mode)
  6204. [stream_set_timeout | Set timeout period on a stream, returns bool]
  6205. stream_set_timeout(|resource stream, int seconds, [int microseconds])
  6206. [stream_set_write_buffer | Sets file buffering on the given stream, returns int]
  6207. stream_set_write_buffer(|resource stream, int buffer)
  6208. [stream_socket_accept | Accept a connection on a socket created by stream_socket_server, returns resource]
  6209. stream_socket_accept(|resource server_socket, [int timeout], [string &peername])
  6210. [stream_socket_client | Open Internet or Unix domain socket connection, returns resource]
  6211. stream_socket_client(|string remote_socket, [int &errno], [string &errstr], [float timeout], [int flags], [resource context])
  6212. [stream_socket_get_name | Retrieve the name of the local or remote sockets, returns string]
  6213. stream_socket_get_name(|resource handle, bool want_peer)
  6214. [stream_socket_server | Create an Internet or Unix domain server socket, returns resource]
  6215. stream_socket_server(|string local_socket, [int &errno], [string &errstr], [int flags], [resource context])
  6216. [stream_wrapper_register | Register a URL wrapper implemented as a PHP class, returns bool]
  6217. stream_wrapper_register(|string protocol, string classname)
  6218. ; -----------------------------------------------------------------------------
  6219. ; Strings - String functions
  6220. ; -----------------------------------------------------------------------------
  6221. [addcslashes | Quote string with slashes in a C style, returns string]
  6222. addcslashes(|string str, string charlist)
  6223. [addslashes | Quote string with slashes, returns string]
  6224. addslashes(|string str)
  6225. [bin2hex | Convert binary data into hexadecimal representation, returns string]
  6226. bin2hex(|string str)
  6227. [chop | Alias of rtrim]
  6228. [chr | Return a specific character, returns string]
  6229. chr(|int ascii)
  6230. [chunk_split | Split a string into smaller chunks, returns string]
  6231. chunk_split(|string body, [int chunklen], [string end])
  6232. [convert_cyr_string | Convert from one Cyrillic character set to another, returns string]
  6233. convert_cyr_string(|string str, string from, string to)
  6234. [count_chars | Return information about characters used in a string, returns mixed]
  6235. count_chars(|string string, [int mode])
  6236. [crc32 | Calculates the crc32 polynomial of a string, returns int]
  6237. crc32(|string str)
  6238. [crypt | One-way string encryption (hashing), returns string]
  6239. crypt(|string str, [string salt])
  6240. [echo | Output one or more strings, returns void]
  6241. echo(|string arg1, [string argn...])
  6242. [explode | Split a string by string, returns array]
  6243. explode(|string separator, string string, [int limit])
  6244. [fprintf | Write a formatted string to a stream, returns int]
  6245. fprintf(|resource handle, string format, [mixed args])
  6246. [get_html_translation_table | Returns the translation table used by htmlspecialchars and htmlentities, returns array]
  6247. get_html_translation_table(|int table, [int quote_style])
  6248. [hebrev | Convert logical Hebrew text to visual text, returns string]
  6249. hebrev(|string hebrew_text, [int max_chars_per_line])
  6250. [hebrevc | Convert logical Hebrew text to visual text with newline conversion, returns string]
  6251. hebrevc(|string hebrew_text, [int max_chars_per_line])
  6252. [html_entity_decode | Convert all HTML entities to their applicable characters, returns string]
  6253. html_entity_decode(|string string, [int quote_style], [string charset])
  6254. [htmlentities | Convert all applicable characters to HTML entities, returns string]
  6255. htmlentities(|string string, [int quote_style], [string charset])
  6256. [htmlspecialchars | Convert special characters to HTML entities, returns string]
  6257. htmlspecialchars(|string string, [int quote_style], [string charset])
  6258. [implode | Join array elements with a string, returns string]
  6259. implode(|string glue, array pieces)
  6260. [join | Alias for implode]
  6261. [levenshtein | Calculate Levenshtein distance between two strings, returns int]
  6262. levenshtein(|string str1, string str2)
  6263. [localeconv | Get numeric formatting information, returns array]
  6264. localeconv()|
  6265. [ltrim | Strip whitespace from the beginning of a string, returns string]
  6266. ltrim(|string str, [string charlist])
  6267. [md5_file | Calculates the md5 hash of a given filename, returns string]
  6268. md5_file(|string filename, [bool raw_output])
  6269. [md5 | Calculate the md5 hash of a string, returns string]
  6270. md5(|string str, [bool raw_output])
  6271. [metaphone | Calculate the metaphone key of a string, returns string]
  6272. metaphone(|string str)
  6273. [money_format | Formats a number as a currency string, returns string]
  6274. money_format(|string format, float number)
  6275. [nl_langinfo | Query language and locale information, returns string]
  6276. nl_langinfo(|int item)
  6277. [nl2br | Inserts HTML line breaks before all newlines in a string, returns string]
  6278. nl2br(|string string)
  6279. [number_format | Format a number with grouped thousands, returns string]
  6280. number_format(|float number, [int decimals])
  6281. [ord | Return ASCII value of character, returns int]
  6282. ord(|string string)
  6283. [parse_str | Parses the string into variables, returns void]
  6284. parse_str(|string str, [array arr])
  6285. [print | Output a string, returns int]
  6286. print(|string arg)
  6287. [printf | Output a formatted string, returns void]
  6288. printf(|string format, [mixed args])
  6289. [quoted_printable_decode | Convert a quoted-printable string to an 8 bit string, returns string]
  6290. quoted_printable_decode(|string str)
  6291. [quotemeta | Quote meta characters, returns string]
  6292. quotemeta(|string str)
  6293. [rtrim | Strip whitespace from the end of a string, returns string]
  6294. rtrim(|string str, [string charlist])
  6295. [setlocale | Set locale information, returns string]
  6296. setlocale(|mixed category, string locale, [string ...])
  6297. [sha1_file | Calculate the sha1 hash of a file, returns string]
  6298. sha1_file(|string filename, [bool raw_output])
  6299. [sha1 | Calculate the sha1 hash of a string, returns string]
  6300. sha1(|string str, [bool raw_output])
  6301. [similar_text | Calculate the similarity between two strings, returns int]
  6302. similar_text(|string first, string second, [float percent])
  6303. [soundex | Calculate the soundex key of a string, returns string]
  6304. soundex(|string str)
  6305. [sprintf | Return a formatted string, returns string]
  6306. sprintf(|string format, [mixed args])
  6307. [sscanf | Parses input from a string according to a format, returns mixed]
  6308. sscanf(|string str, string format, [string var1])
  6309. [str_ireplace | Case-insensitive version of str_replace., returns mixed]
  6310. str_ireplace(|mixed search, mixed replace, mixed subject, [int &count])
  6311. [str_pad | Pad a string to a certain length with another string, returns string]
  6312. str_pad(|string input, int pad_length, [string pad_string], [int pad_type])
  6313. [str_repeat | Repeat a string, returns string]
  6314. str_repeat(|string input, int multiplier)
  6315. [str_replace | Replace all occurrences of the search string with the replacement string, returns mixed]
  6316. str_replace(|mixed search, mixed replace, mixed subject, [int &count])
  6317. [str_rot13 | Perform the rot13 transform on a string, returns string]
  6318. str_rot13(|string str)
  6319. [str_shuffle | Randomly shuffles a string, returns string]
  6320. str_shuffle(|string str)
  6321. [str_split | Convert a string to an array, returns array]
  6322. str_split(|string string, [int split_length])
  6323. [str_word_count | Return information about words used in a string, returns mixed]
  6324. str_word_count(|string string, [int format])
  6325. [strcasecmp | Binary safe case-insensitive string comparison, returns int]
  6326. strcasecmp(|string str1, string str2)
  6327. [strchr | Alias for strstr]
  6328. [strcmp | Binary safe string comparison, returns int]
  6329. strcmp(|string str1, string str2)
  6330. [strcoll | Locale based string comparison, returns int]
  6331. strcoll(|string str1, string str2)
  6332. [strcspn | Find length of initial segment not matching mask, returns int]
  6333. strcspn(|string str1, string str2)
  6334. [strip_tags | Strip HTML and PHP tags from a string, returns string]
  6335. strip_tags(|string str, [string allowable_tags])
  6336. [stripcslashes | Un-quote string quoted with addcslashes, returns string]
  6337. stripcslashes(|string str)
  6338. [stripos | Find position of first occurrence of a case-insensitive string, returns int]
  6339. stripos(|string haystack, string needle, [int offset])
  6340. [stripslashes | Un-quote string quoted with addslashes, returns string]
  6341. stripslashes(|string str)
  6342. [stristr | Case-insensitive strstr, returns string]
  6343. stristr(|string haystack, string needle)
  6344. [strlen | Get string length, returns int]
  6345. strlen(|string str)
  6346. [strnatcasecmp | Case insensitive string comparisons using a "natural order" algorithm, returns int]
  6347. strnatcasecmp(|string str1, string str2)
  6348. [strnatcmp | String comparisons using a "natural order" algorithm, returns int]
  6349. strnatcmp(|string str1, string str2)
  6350. [strncasecmp | Binary safe case-insensitive string comparison of the first n characters, returns int]
  6351. strncasecmp(|string str1, string str2, int len)
  6352. [strncmp | Binary safe string comparison of the first n characters, returns int]
  6353. strncmp(|string str1, string str2, int len)
  6354. [strpos | Find position of first occurrence of a string, returns int]
  6355. strpos(|string haystack, string needle, [int offset])
  6356. [strrchr | Find the last occurrence of a character in a string, returns string]
  6357. strrchr(|string haystack, char needle)
  6358. [strrev | Reverse a string, returns string]
  6359. strrev(|string string)
  6360. [strripos | Find position of last occurrence of a case-insensitive string in a string, returns int]
  6361. strripos(|string haystack, string needle)
  6362. [strrpos | Find position of last occurrence of a char in a string, returns int]
  6363. strrpos(|string haystack, string needle)
  6364. [strspn | Find length of initial segment matching mask, returns int]
  6365. strspn(|string str1, string str2)
  6366. [strstr | Find first occurrence of a string, returns string]
  6367. strstr(|string haystack, string needle)
  6368. [strtok | Tokenize string, returns string]
  6369. strtok(|string arg1, string arg2)
  6370. [strtolower | Make a string lowercase, returns string]
  6371. strtolower(|string str)
  6372. [strtoupper | Make a string uppercase, returns string]
  6373. strtoupper(|string string)
  6374. [strtr | Translate certain characters, returns string]
  6375. strtr(|string str, string from, string to)
  6376. [substr_compare | Binary safe optionally case insensitive comparison of 2 strings from an offset, up to length characters, returns int]
  6377. substr_compare(|string main_str, string str, int offset, [int length], [bool case_sensitivity])
  6378. [substr_count | Count the number of substring occurrences, returns int]
  6379. substr_count(|string haystack, string needle)
  6380. [substr_replace | Replace text within a portion of a string, returns string]
  6381. substr_replace(|string string, string replacement, int start, [int length])
  6382. [substr | Return part of a string, returns string]
  6383. substr(|string string, int start, [int length])
  6384. [trim | Strip whitespace from the beginning and end of a string, returns string]
  6385. trim(|string str, [string charlist])
  6386. [ucfirst | Make a string's first character uppercase, returns string]
  6387. ucfirst(|string str)
  6388. [ucwords | Uppercase the first character of each word in a string, returns string]
  6389. ucwords(|string str)
  6390. [vprintf | Output a formatted string, returns void]
  6391. vprintf(|string format, array args)
  6392. [vsprintf | Return a formatted string, returns string]
  6393. vsprintf(|string format, array args)
  6394. [wordwrap | Wraps a string to a given number of characters using a string break character., returns string]
  6395. wordwrap(|string str, [int width], [string break], [boolean cut])
  6396. ; -----------------------------------------------------------------------------
  6397. ; Sybase - Sybase functions
  6398. ; -----------------------------------------------------------------------------
  6399. [sybase_affected_rows | Gets number of affected rows in last query, returns int]
  6400. sybase_affected_rows(|[resource link_identifier])
  6401. [sybase_close | Closes a Sybase connection, returns bool]
  6402. sybase_close(|[resource link_identifier])
  6403. [sybase_connect | Opens a Sybase server connection, returns resource]
  6404. sybase_connect(|[string servername], [string username], [string password], [string charset], [string appname])
  6405. [sybase_data_seek | Moves internal row pointer, returns bool]
  6406. sybase_data_seek(|resource result_identifier, int row_number)
  6407. [sybase_deadlock_retry_count | Sets the deadlock retry count, returns void]
  6408. sybase_deadlock_retry_count(|int retry_count)
  6409. [sybase_fetch_array | Fetch row as array, returns array]
  6410. sybase_fetch_array(|resource result)
  6411. [sybase_fetch_assoc | Fetch a result row as an associative array, returns array]
  6412. sybase_fetch_assoc(|resource result)
  6413. [sybase_fetch_field | Get field information from a result, returns object]
  6414. sybase_fetch_field(|resource result, [int field_offset])
  6415. [sybase_fetch_object | Fetch a row as an object, returns object]
  6416. sybase_fetch_object(|resource result, [mixed object])
  6417. [sybase_fetch_row | Get a result row as an enumerated array, returns array]
  6418. sybase_fetch_row(|resource result)
  6419. [sybase_field_seek | Sets field offset, returns bool]
  6420. sybase_field_seek(|resource result, int field_offset)
  6421. [sybase_free_result | Frees result memory, returns bool]
  6422. sybase_free_result(|resource result)
  6423. [sybase_get_last_message | Returns the last message from the server, returns string]
  6424. sybase_get_last_message()|
  6425. [sybase_min_client_severity | Sets minimum client severity, returns void]
  6426. sybase_min_client_severity(|int severity)
  6427. [sybase_min_error_severity | Sets minimum error severity, returns void]
  6428. sybase_min_error_severity(|int severity)
  6429. [sybase_min_message_severity | Sets minimum message severity, returns void]
  6430. sybase_min_message_severity(|int severity)
  6431. [sybase_min_server_severity | Sets minimum server severity, returns void]
  6432. sybase_min_server_severity(|int severity)
  6433. [sybase_num_fields | Gets the number of fields in a result set, returns int]
  6434. sybase_num_fields(|resource result)
  6435. [sybase_num_rows | Get number of rows in a result set, returns int]
  6436. sybase_num_rows(|resource result)
  6437. [sybase_pconnect | Open persistent Sybase connection, returns resource]
  6438. sybase_pconnect(|[string servername], [string username], [string password], [string charset], [string appname])
  6439. [sybase_query | Sends a Sybase query, returns resource]
  6440. sybase_query(|string query, resource link_identifier)
  6441. [sybase_result | Get result data, returns string]
  6442. sybase_result(|resource result, int row, mixed field)
  6443. [sybase_select_db | Selects a Sybase database, returns bool]
  6444. sybase_select_db(|string database_name, [resource link_identifier])
  6445. [sybase_set_message_handler | Sets the handler called when a server message is raised, returns bool]
  6446. sybase_set_message_handler(|callback handler)
  6447. [sybase_unbuffered_query | Send a Sybase query and do not block, returns resource]
  6448. sybase_unbuffered_query(|string query, resource link_identifier)
  6449. ; -----------------------------------------------------------------------------
  6450. ; tidy - tidy Functions
  6451. ; -----------------------------------------------------------------------------
  6452. [tidy_access_count | Returns the Number of Tidy accessibility warnings encountered for specified document., returns int]
  6453. tidy_access_count()|
  6454. [tidy_clean_repair | Execute configured cleanup and repair operations on parsed markup, returns bool]
  6455. tidy_clean_repair()|
  6456. [tidy_config_count | Returns the Number of Tidy configuration errors encountered for specified document., returns int]
  6457. tidy_config_count()|
  6458. [tidy_diagnose | Run configured diagnostics on parsed and repaired markup., returns bool]
  6459. tidy_diagnose()|
  6460. [tidy_error_count | Returns the Number of Tidy errors encountered for specified document., returns int]
  6461. tidy_error_count()|
  6462. [tidy_get_body | Returns a TidyNode Object starting from the >BODY< tag of the tidy parse tree, returns TidyNode]
  6463. tidy_get_body(|resource tidy)
  6464. [tidy_get_config | Get current Tidy configuarion, returns array]
  6465. tidy_get_config()|
  6466. [tidy_get_error_buffer | Return warnings and errors which occured parsing the specified document, returns string]
  6467. tidy_get_error_buffer(|[bool detailed])
  6468. [tidy_get_head | Returns a TidyNode Object starting from the >HEAD< tag of the tidy parse tree, returns TidyNode]
  6469. tidy_get_head()|
  6470. [tidy_get_html_ver | Get the Detected HTML version for the specified document., returns int]
  6471. tidy_get_html_ver()|
  6472. [tidy_get_html | Returns a TidyNode Object starting from the >HTML< tag of the tidy parse tree, returns TidyNode]
  6473. tidy_get_html()|
  6474. [tidy_get_output | Return a string representing the parsed tidy markup, returns string]
  6475. tidy_get_output()|
  6476. [tidy_get_release | Get release date (version) for Tidy library, returns string]
  6477. tidy_get_release()|
  6478. [tidy_get_root | Returns a TidyNode Object representing the root of the tidy parse tree, returns TidyNode]
  6479. tidy_get_root()|
  6480. [tidy_get_status | Get status of specfied document., returns int]
  6481. tidy_get_status()|
  6482. [tidy_getopt | Returns the value of the specified configuration option for the tidy document., returns mixed]
  6483. tidy_getopt(|string option)
  6484. [tidy_is_xhtml | Indicates if the document is a generic (non HTML/XHTML) XML document., returns bool]
  6485. tidy_is_xhtml()|
  6486. [tidy_load_config | Load an ASCII Tidy configuration file with the specified encoding, returns void]
  6487. tidy_load_config(|string filename, string encoding)
  6488. [tidy_parse_file | Parse markup in file or URI, returns bool]
  6489. tidy_parse_file(|string file, [bool use_include_path])
  6490. [tidy_parse_string | Parse a document stored in a string, returns bool]
  6491. tidy_parse_string(|string input)
  6492. [tidy_repair_file | Repair a file using an optionally provided configuration file, returns bool]
  6493. tidy_repair_file(|string filename, [string config_file], [bool use_include_path])
  6494. [tidy_repair_string | Repair a string using an optionally provided configuration file, returns bool]
  6495. tidy_repair_string(|string data, [string config_file])
  6496. [tidy_reset_config | Restore Tidy configuration to default values, returns string]
  6497. tidy_reset_config()|
  6498. [tidy_save_config | Save current settings to named file. Only non-default values are written., returns bool]
  6499. tidy_save_config(|string filename)
  6500. [tidy_set_encoding | Set the input/output character encoding for parsing markup. Values include: ascii, latin1, raw, utf8, iso2022, mac, win1252, utf16le, utf16be, utf16, big5 and shiftjis., returns bool]
  6501. tidy_set_encoding(|string encoding)
  6502. [tidy_setopt | Updates the configuration settings for the specified tidy document., returns bool]
  6503. tidy_setopt(|string option, mixed newvalue)
  6504. [tidy_warning_count | Returns the Number of Tidy warnings encountered for specified document., returns int]
  6505. tidy_warning_count()|
  6506. ; -----------------------------------------------------------------------------
  6507. ; Tokenizer - Tokenizer functions
  6508. ; -----------------------------------------------------------------------------
  6509. [token_get_all | Split given source into PHP tokens, returns array]
  6510. token_get_all(|string source)
  6511. [token_name | Get the symbolic name of a given PHP token, returns string]
  6512. token_name(|int token)
  6513. ; -----------------------------------------------------------------------------
  6514. ; URLs - URL Functions
  6515. ; -----------------------------------------------------------------------------
  6516. [base64_decode | Decodes data encoded with MIME base64, returns string]
  6517. base64_decode(|string encoded_data)
  6518. [base64_encode | Encodes data with MIME base64, returns string]
  6519. base64_encode(|string data)
  6520. [get_meta_tags | Extracts all meta tag content attributes from a file and returns an array, returns array]
  6521. get_meta_tags(|string filename, [int use_include_path])
  6522. [http_build_query | Generate url-encoded query string, returns string]
  6523. http_build_query(|array formdata, [string numeric_prefix])
  6524. [parse_url | Parse a URL and return its components, returns array]
  6525. parse_url(|string url)
  6526. [rawurldecode | Decode URL-encoded strings, returns string]
  6527. rawurldecode(|string str)
  6528. [rawurlencode | URL-encode according to RFC 1738, returns string]
  6529. rawurlencode(|string str)
  6530. [urldecode | Decodes URL-encoded string, returns string]
  6531. urldecode(|string str)
  6532. [urlencode | URL-encodes string, returns string]
  6533. urlencode(|string str)
  6534. ; -----------------------------------------------------------------------------
  6535. ; Variables - Variable Functions
  6536. ; -----------------------------------------------------------------------------
  6537. [doubleval | Alias of floatval]
  6538. [empty | Determine whether a variable is empty, returns bool]
  6539. empty(|mixed var)
  6540. [floatval | Get float value of a variable, returns float]
  6541. floatval(|mixed var)
  6542. [get_defined_vars | Returns an array of all defined variables, returns array]
  6543. get_defined_vars()|
  6544. [get_resource_type | Returns the resource type, returns string]
  6545. get_resource_type(|resource handle)
  6546. [gettype | Get the type of a variable, returns string]
  6547. gettype(|mixed var)
  6548. [import_request_variables | Import GET/POST/Cookie variables into the global scope, returns bool]
  6549. import_request_variables(|string types, [string prefix])
  6550. [intval | Get integer value of a variable, returns int]
  6551. intval(|mixed var, [int base])
  6552. [is_array | Finds whether a variable is an array, returns bool]
  6553. is_array(|mixed var)
  6554. [is_bool | Finds out whether a variable is a boolean, returns bool]
  6555. is_bool(|mixed var)
  6556. [is_callable | Verify that the contents of a variable can be called as a function, returns bool]
  6557. is_callable(|mixed var, [bool syntax_only], [string callable_name])
  6558. [is_double | Alias of is_float]
  6559. [is_float | Finds whether a variable is a float, returns bool]
  6560. is_float(|mixed var)
  6561. [is_int | Find whether a variable is an integer, returns bool]
  6562. is_int(|mixed var)
  6563. [is_integer | Alias of is_int]
  6564. [is_long | Alias of is_int]
  6565. [is_null | Finds whether a variable is NULL, returns bool]
  6566. is_null(|mixed var)
  6567. [is_numeric | Finds whether a variable is a number or a numeric string, returns bool]
  6568. is_numeric(|mixed var)
  6569. [is_object | Finds whether a variable is an object, returns bool]
  6570. is_object(|mixed var)
  6571. [is_real | Alias of is_float]
  6572. [is_resource | Finds whether a variable is a resource, returns bool]
  6573. is_resource(|mixed var)
  6574. [is_scalar | Finds whether a variable is a scalar, returns bool]
  6575. is_scalar(|mixed var)
  6576. [is_string | Finds whether a variable is a string, returns bool]
  6577. is_string(|mixed var)
  6578. [isset | Determine whether a variable is set, returns bool]
  6579. isset(|mixed var, [mixed var], [ ...])
  6580. [print_r | Prints human-readable information about a variable, returns bool]
  6581. print_r(|mixed expression, [bool return])
  6582. [serialize | Generates a storable representation of a value, returns string]
  6583. serialize(|mixed value)
  6584. [settype | Set the type of a variable, returns bool]
  6585. settype(|mixed var, string type)
  6586. [strval | Get string value of a variable, returns string]
  6587. strval(|mixed var)
  6588. [unserialize | Creates a PHP value from a stored representation, returns mixed]
  6589. unserialize(|string str, [string callback])
  6590. [unset | Unset a given variable, returns void]
  6591. unset(|mixed var, [mixed var], [ ...])
  6592. [var_dump | Dumps information about a variable, returns void]
  6593. var_dump(|mixed expression, [mixed expression], [ ...])
  6594. [var_export | Outputs or returns a string representation of a variable, returns mixed]
  6595. var_export(|mixed expression, [bool return])
  6596. ; -----------------------------------------------------------------------------
  6597. ; vpopmail - vpopmail functions
  6598. ; -----------------------------------------------------------------------------
  6599. [vpopmail_add_alias_domain_ex | Add alias to an existing virtual domain, returns bool]
  6600. vpopmail_add_alias_domain_ex(|string olddomain, string newdomain)
  6601. [vpopmail_add_alias_domain | Add an alias for a virtual domain, returns bool]
  6602. vpopmail_add_alias_domain(|string domain, string aliasdomain)
  6603. [vpopmail_add_domain_ex | Add a new virtual domain, returns bool]
  6604. vpopmail_add_domain_ex(|string domain, string passwd, [string quota], [string bounce], [bool apop])
  6605. [vpopmail_add_domain | Add a new virtual domain, returns bool]
  6606. vpopmail_add_domain(|string domain, string dir, int uid, int gid)
  6607. [vpopmail_add_user | Add a new user to the specified virtual domain, returns bool]
  6608. vpopmail_add_user(|string user, string domain, string password, [string gecos], [bool apop])
  6609. [vpopmail_alias_add | insert a virtual alias, returns bool]
  6610. vpopmail_alias_add(|string user, string domain, string alias)
  6611. [vpopmail_alias_del_domain | deletes all virtual aliases of a domain, returns bool]
  6612. vpopmail_alias_del_domain(|string domain)
  6613. [vpopmail_alias_del | deletes all virtual aliases of a user, returns bool]
  6614. vpopmail_alias_del(|string user, string domain)
  6615. [vpopmail_alias_get_all | get all lines of an alias for a domain, returns array]
  6616. vpopmail_alias_get_all(|string domain)
  6617. [vpopmail_alias_get | get all lines of an alias for a domain, returns array]
  6618. vpopmail_alias_get(|string alias, string domain)
  6619. [vpopmail_auth_user | Attempt to validate a username/domain/password. Returns true/false, returns bool]
  6620. vpopmail_auth_user(|string user, string domain, string password, [string apop])
  6621. [vpopmail_del_domain_ex | Delete a virtual domain, returns bool]
  6622. vpopmail_del_domain_ex(|string domain)
  6623. [vpopmail_del_domain | Delete a virtual domain, returns bool]
  6624. vpopmail_del_domain(|string domain)
  6625. [vpopmail_del_user | Delete a user from a virtual domain, returns bool]
  6626. vpopmail_del_user(|string user, string domain)
  6627. [vpopmail_error | Get text message for last vpopmail error. Returns string, returns string]
  6628. vpopmail_error()|
  6629. [vpopmail_passwd | Change a virtual user's password, returns bool]
  6630. vpopmail_passwd(|string user, string domain, string password)
  6631. [vpopmail_set_user_quota | Sets a virtual user's quota, returns bool]
  6632. vpopmail_set_user_quota(|string user, string domain, string quota)
  6633. ; -----------------------------------------------------------------------------
  6634. ; W32api - W32api functions
  6635. ; -----------------------------------------------------------------------------
  6636. [w32api_deftype | Defines a type for use with other w32api_functions, returns bool]
  6637. w32api_deftype(|string typename, string member1_type, string member1_name, [string ...], [string ...])
  6638. [w32api_init_dtype | Creates an instance of the data type typename and fills it with the values passed, returns resource]
  6639. w32api_init_dtype(|string typename, mixed value, [mixed ...])
  6640. [w32api_invoke_function | Invokes function funcname with the arguments passed after the function name, returns mixed]
  6641. w32api_invoke_function(|string funcname, mixed argument, [mixed ...])
  6642. [w32api_register_function | Registers function function_name from library with PHP, returns bool]
  6643. w32api_register_function(|string library, string function_name, string return_type)
  6644. [w32api_set_call_method | Sets the calling method used, returns void]
  6645. w32api_set_call_method(|int method)
  6646. ; -----------------------------------------------------------------------------
  6647. ; WDDX - WDDX Functions
  6648. ; -----------------------------------------------------------------------------
  6649. [wddx_add_vars | Add variables to a WDDX packet with the specified ID, returns bool]
  6650. wddx_add_vars(|int packet_id, mixed name_var, [mixed ...])
  6651. [wddx_deserialize | Deserializes a WDDX packet, returns mixed]
  6652. wddx_deserialize(|string packet)
  6653. [wddx_packet_end | Ends a WDDX packet with the specified ID, returns string]
  6654. wddx_packet_end(|int packet_id)
  6655. [wddx_packet_start | Starts a new WDDX packet with structure inside it, returns int]
  6656. wddx_packet_start(|[string comment])
  6657. [wddx_serialize_value | Serialize a single value into a WDDX packet, returns string]
  6658. wddx_serialize_value(|mixed var, [string comment])
  6659. [wddx_serialize_vars | Serialize variables into a WDDX packet, returns string]
  6660. wddx_serialize_vars(|mixed var_name, [mixed ...])
  6661. ; -----------------------------------------------------------------------------
  6662. ; XML - XML parser functions
  6663. ; -----------------------------------------------------------------------------
  6664. [utf8_decode | Converts a string with ISO-8859-1 characters encoded with UTF-8 to single-byte ISO-8859-1., returns string]
  6665. utf8_decode(|string data)
  6666. [utf8_encode | encodes an ISO-8859-1 string to UTF-8, returns string]
  6667. utf8_encode(|string data)
  6668. [xml_error_string | get XML parser error string, returns string]
  6669. xml_error_string(|int code)
  6670. [xml_get_current_byte_index | get current byte index for an XML parser, returns int]
  6671. xml_get_current_byte_index(|resource parser)
  6672. [xml_get_current_column_number | Get current column number for an XML parser, returns int]
  6673. xml_get_current_column_number(|resource parser)
  6674. [xml_get_current_line_number | get current line number for an XML parser, returns int]
  6675. xml_get_current_line_number(|resource parser)
  6676. [xml_get_error_code | get XML parser error code, returns int]
  6677. xml_get_error_code(|resource parser)
  6678. [xml_parse_into_struct | Parse XML data into an array structure, returns int]
  6679. xml_parse_into_struct(|resource parser, string data, array &values, [array &index])
  6680. [xml_parse | start parsing an XML document, returns bool]
  6681. xml_parse(|resource parser, string data, [bool is_final])
  6682. [xml_parser_create_ns | Create an XML parser with namespace support, returns resource]
  6683. xml_parser_create_ns(|[string encoding], [string separator])
  6684. [xml_parser_create | create an XML parser, returns resource]
  6685. xml_parser_create(|[string encoding])
  6686. [xml_parser_free | Free an XML parser, returns bool]
  6687. xml_parser_free(|resource parser)
  6688. [xml_parser_get_option | get options from an XML parser, returns mixed]
  6689. xml_parser_get_option(|resource parser, int option)
  6690. [xml_parser_set_option | set options in an XML parser, returns bool]
  6691. xml_parser_set_option(|resource parser, int option, mixed value)
  6692. [xml_set_character_data_handler | set up character data handler, returns bool]
  6693. xml_set_character_data_handler(|resource parser, callback handler)
  6694. [xml_set_default_handler | set up default handler, returns bool]
  6695. xml_set_default_handler(|resource parser, callback handler)
  6696. [xml_set_element_handler | set up start and end element handlers, returns bool]
  6697. xml_set_element_handler(|resource parser, callback start_element_handler, callback end_element_handler)
  6698. [xml_set_end_namespace_decl_handler | Set up character data handler, returns bool]
  6699. xml_set_end_namespace_decl_handler(|resource pind, callback handler)
  6700. [xml_set_external_entity_ref_handler | set up external entity reference handler, returns bool]
  6701. xml_set_external_entity_ref_handler(|resource parser, callback handler)
  6702. [xml_set_notation_decl_handler | set up notation declaration handler, returns bool]
  6703. xml_set_notation_decl_handler(|resource parser, callback handler)
  6704. [xml_set_object | Use XML Parser within an object, returns void]
  6705. xml_set_object(|resource parser, object object)
  6706. [xml_set_processing_instruction_handler | Set up processing instruction (PI) handler, returns bool]
  6707. xml_set_processing_instruction_handler(|resource parser, callback handler)
  6708. [xml_set_start_namespace_decl_handler | Set up character data handler, returns bool]
  6709. xml_set_start_namespace_decl_handler(|resource pind, callback hdl)
  6710. [xml_set_unparsed_entity_decl_handler | Set up unparsed entity declaration handler, returns bool]
  6711. xml_set_unparsed_entity_decl_handler(|resource parser, callback handler)
  6712. ; -----------------------------------------------------------------------------
  6713. ; XML-RPC - XML-RPC functions
  6714. ; -----------------------------------------------------------------------------
  6715. [xmlrpc_decode_request | Decodes XML into native PHP types, returns array]
  6716. xmlrpc_decode_request(|string xml, string &method, [string encoding])
  6717. [xmlrpc_decode | Decodes XML into native PHP types, returns array]
  6718. xmlrpc_decode(|string xml, [string encoding])
  6719. [xmlrpc_encode_request | Generates XML for a method request, returns string]
  6720. xmlrpc_encode_request(|string method, mixed params)
  6721. [xmlrpc_encode | Generates XML for a PHP value, returns string]
  6722. xmlrpc_encode(|mixed value)
  6723. [xmlrpc_get_type | Gets xmlrpc type for a PHP value. Especially useful for base64 and datetime strings, returns string]
  6724. xmlrpc_get_type(|mixed value)
  6725. [xmlrpc_parse_method_descriptions | Decodes XML into a list of method descriptions, returns array]
  6726. xmlrpc_parse_method_descriptions(|string xml)
  6727. [xmlrpc_server_add_introspection_data | Adds introspection documentation, returns int]
  6728. xmlrpc_server_add_introspection_data(|resource server, array desc)
  6729. [xmlrpc_server_call_method | Parses XML requests and call methods, returns mixed]
  6730. xmlrpc_server_call_method(|resource server, string xml, mixed user_data, [array output_options])
  6731. [xmlrpc_server_create | Creates an xmlrpc server, returns resource]
  6732. xmlrpc_server_create()|
  6733. [xmlrpc_server_destroy | Destroys server resources, returns int]
  6734. xmlrpc_server_destroy(|resource server)
  6735. [xmlrpc_server_register_introspection_callback | Register a PHP function to generate documentation, returns bool]
  6736. xmlrpc_server_register_introspection_callback(|resource server, string function)
  6737. [xmlrpc_server_register_method | Register a PHP function to resource method matching method_name, returns bool]
  6738. xmlrpc_server_register_method(|resource server, string method_name, string function)
  6739. [xmlrpc_set_type | Sets xmlrpc type, base64 or datetime, for a PHP string value, returns bool]
  6740. xmlrpc_set_type(|string value, string type)
  6741. ; -----------------------------------------------------------------------------
  6742. ; XSLT - XSLT functions
  6743. ; -----------------------------------------------------------------------------
  6744. [xslt_create | Create a new XSLT processor, returns resource]
  6745. xslt_create()|
  6746. [xslt_errno | Returns an error number, returns int]
  6747. xslt_errno(|resource xh)
  6748. [xslt_error | Returns an error string, returns mixed]
  6749. xslt_error(|resource xh)
  6750. [xslt_free | Free XSLT processor, returns void]
  6751. xslt_free(|resource xh)
  6752. [xslt_process | Perform an XSLT transformation, returns mixed]
  6753. xslt_process(|resource xh, string xmlcontainer, string xslcontainer, [string resultcontainer], [array arguments], [array parameters])
  6754. [xslt_set_base | Set the base URI for all XSLT transformations, returns void]
  6755. xslt_set_base(|resource xh, string uri)
  6756. [xslt_set_encoding | Set the encoding for the parsing of XML documents, returns void]
  6757. xslt_set_encoding(|resource xh, string encoding)
  6758. [xslt_set_error_handler | Set an error handler for a XSLT processor, returns void]
  6759. xslt_set_error_handler(|resource xh, mixed handler)
  6760. [xslt_set_log | Set the log file to write log messages to, returns void]
  6761. xslt_set_log(|resource xh, mixed log)
  6762. [xslt_set_sax_handler | Set SAX handlers for a XSLT processor, returns void]
  6763. xslt_set_sax_handler(|resource xh, array handlers)
  6764. [xslt_set_sax_handlers | Set the SAX handlers to be called when the XML document gets processed, returns void]
  6765. xslt_set_sax_handlers(|resource processor, array handlers)
  6766. [xslt_set_scheme_handler | Set Scheme handlers for a XSLT processor, returns void]
  6767. xslt_set_scheme_handler(|resource xh, array handlers)
  6768. [xslt_set_scheme_handlers | Set the scheme handlers for the XSLT processor, returns void]
  6769. xslt_set_scheme_handlers(|resource processor, array handlers)
  6770. ; -----------------------------------------------------------------------------
  6771. ; YAZ - YAZ functions
  6772. ; -----------------------------------------------------------------------------
  6773. [yaz_addinfo | Returns additional error information, returns string]
  6774. yaz_addinfo(|resource id)
  6775. [yaz_ccl_conf | Configure CCL parser, returns int]
  6776. yaz_ccl_conf(|resource id, array config)
  6777. [yaz_ccl_parse | Invoke CCL Parser, returns bool]
  6778. yaz_ccl_parse(|resource id, string query, array & result)
  6779. [yaz_close | Close YAZ connection, returns bool]
  6780. yaz_close(|resource id)
  6781. [yaz_connect | Prepares for a connection to a Z39.50 target (server)., returns resource]
  6782. yaz_connect(|string zurl, [mixed options])
  6783. [yaz_database | Specifies the databases within a session, returns bool]
  6784. yaz_database(|resource id, string databases)
  6785. [yaz_element | Specifies Element-Set Name for retrieval, returns bool]
  6786. yaz_element(|resource id, string elementset)
  6787. [yaz_errno | Returns error number, returns int]
  6788. yaz_errno(|resource id)
  6789. [yaz_error | Returns error description, returns string]
  6790. yaz_error(|resource id)
  6791. [yaz_get_option | Returns value of option for connection, returns string]
  6792. yaz_get_option(|resource id, string name)
  6793. [yaz_hits | Returns number of hits for last search, returns int]
  6794. yaz_hits(|resource id)
  6795. [yaz_itemorder | Prepares for Z39.50 Item Order with an ILL-Request package, returns int]
  6796. yaz_itemorder(|resource id, array args)
  6797. [yaz_present | Prepares for retrieval (Z39.50 present)., returns bool]
  6798. yaz_present(|resource id)
  6799. [yaz_range | Specifies the maximum number of records to retrieve, returns bool]
  6800. yaz_range(|resource id, int start, int number)
  6801. [yaz_record | Returns a record, returns string]
  6802. yaz_record(|resource id, int pos, string type)
  6803. [yaz_scan_result | Returns Scan Response result, returns array]
  6804. yaz_scan_result(|resource id, [array & result])
  6805. [yaz_scan | Prepares for a scan, returns int]
  6806. yaz_scan(|resource id, string type, string startterm, [array flags])
  6807. [yaz_schema | Specifies schema for retrieval., returns int]
  6808. yaz_schema(|resource id, string schema)
  6809. [yaz_search | Prepares for a search, returns int]
  6810. yaz_search(|resource id, string type, string query)
  6811. [yaz_set_option | Sets one or more options for connection, returns string]
  6812. yaz_set_option(|resource id, string name, string value)
  6813. [yaz_sort | Sets sorting criteria, returns int]
  6814. yaz_sort(|resource id, string criteria)
  6815. [yaz_syntax | Specifies the preferred record syntax for retrieval., returns int]
  6816. yaz_syntax(|resource id, string syntax)
  6817. [yaz_wait | Wait for Z39.50 requests to complete, returns int]
  6818. yaz_wait(|[array options])
  6819. ; -----------------------------------------------------------------------------
  6820. ; YP/NIS - YP/NIS Functions
  6821. ; -----------------------------------------------------------------------------
  6822. [yp_all | Traverse the map and call a function on each entry, returns void]
  6823. yp_all(|string domain, string map, string callback)
  6824. [yp_cat | Return an array containing the entire map, returns array]
  6825. yp_cat(|string domain, string map)
  6826. [yp_err_string | Returns the error string associated with the given error code, returns string]
  6827. yp_err_string(|int errorcode)
  6828. [yp_errno | Returns the error code of the previous operation, returns int]
  6829. yp_errno()|
  6830. [yp_first | Returns the first key-value pair from the named map, returns array]
  6831. yp_first(|string domain, string map)
  6832. [yp_get_default_domain | Fetches the machine's default NIS domain, returns int]
  6833. yp_get_default_domain()|
  6834. [yp_master | Returns the machine name of the master NIS server for a map, returns string]
  6835. yp_master(|string domain, string map)
  6836. [yp_match | Returns the matched line, returns string]
  6837. yp_match(|string domain, string map, string key)
  6838. [yp_next | Returns the next key-value pair in the named map., returns array]
  6839. yp_next(|string domain, string map, string key)
  6840. [yp_order | Returns the order number for a map, returns int]
  6841. yp_order(|string domain, string map)
  6842. ; -----------------------------------------------------------------------------
  6843. ; Zip - Zip File Functions (Read Only Access)
  6844. ; -----------------------------------------------------------------------------
  6845. [zip_close | Close a Zip File Archive, returns void]
  6846. zip_close(|resource zip)
  6847. [zip_entry_close | Close a Directory Entry, returns void]
  6848. zip_entry_close(|resource zip_entry)
  6849. [zip_entry_compressedsize | Retrieve the Compressed Size of a Directory Entry, returns int]
  6850. zip_entry_compressedsize(|resource zip_entry)
  6851. [zip_entry_compressionmethod | Retrieve the Compression Method of a Directory Entry, returns string]
  6852. zip_entry_compressionmethod(|resource zip_entry)
  6853. [zip_entry_filesize | Retrieve the Actual File Size of a Directory Entry, returns int]
  6854. zip_entry_filesize(|resource zip_entry)
  6855. [zip_entry_name | Retrieve the Name of a Directory Entry, returns string]
  6856. zip_entry_name(|resource zip_entry)
  6857. [zip_entry_open | Open a Directory Entry for Reading, returns bool]
  6858. zip_entry_open(|resource zip, resource zip_entry, [string mode])
  6859. [zip_entry_read | Read From an Open Directory Entry, returns string]
  6860. zip_entry_read(|resource zip_entry, [int length])
  6861. [zip_open | Open a Zip File Archive, returns resource]
  6862. zip_open(|string filename)
  6863. [zip_read | Read Next Entry in a Zip File Archive, returns resource]
  6864. zip_read(|resource zip)
  6865. ; -----------------------------------------------------------------------------
  6866. ; Zlib - Zlib Compression Functions
  6867. ; -----------------------------------------------------------------------------
  6868. [gzclose | Close an open gz-file pointer, returns int]
  6869. gzclose(|resource zp)
  6870. [gzcompress | Compress a string, returns string]
  6871. gzcompress(|string data, [int level])
  6872. [gzdeflate | Deflate a string, returns string]
  6873. gzdeflate(|string data, [int level])
  6874. [gzencode | Create a gzip compressed string, returns string]
  6875. gzencode(|string data, [int level], [int encoding_mode])
  6876. [gzeof | Test for end-of-file on a gz-file pointer, returns int]
  6877. gzeof(|resource zp)
  6878. [gzfile | Read entire gz-file into an array, returns array]
  6879. gzfile(|string filename, [int use_include_path])
  6880. [gzgetc | Get character from gz-file pointer, returns string]
  6881. gzgetc(|resource zp)
  6882. [gzgets | Get line from file pointer, returns string]
  6883. gzgets(|resource zp, int length)
  6884. [gzgetss | Get line from gz-file pointer and strip HTML tags, returns string]
  6885. gzgetss(|resource zp, int length, [string allowable_tags])
  6886. [gzinflate | Inflate a deflated string, returns string]
  6887. gzinflate(|string data, [int length])
  6888. [gzopen | Open gz-file, returns resource]
  6889. gzopen(|string filename, string mode, [int use_include_path])
  6890. [gzpassthru | Output all remaining data on a gz-file pointer, returns int]
  6891. gzpassthru(|resource zp)
  6892. [gzputs | Alias for gzwrite]
  6893. [gzread | Binary-safe gz-file read, returns string]
  6894. gzread(|resource zp, int length)
  6895. [gzrewind | Rewind the position of a gz-file pointer, returns int]
  6896. gzrewind(|resource zp)
  6897. [gzseek | Seek on a gz-file pointer, returns int]
  6898. gzseek(|resource zp, int offset)
  6899. [gztell | Tell gz-file pointer read/write position, returns int]
  6900. gztell(|resource zp)
  6901. [gzuncompress | Uncompress a deflated string, returns string]
  6902. gzuncompress(|string data, [int length])
  6903. [gzwrite | Binary-safe gz-file write, returns int]
  6904. gzwrite(|resource zp, string string, [int length])
  6905. [readgzfile | Output a gz-file, returns int]
  6906. readgzfile(|string filename, [int use_include_path])
  6907. [zlib_get_coding_type | Returns the coding type used for output compression, returns string]
  6908. zlib_get_coding_type()|
  6909. ;
  6910. ;
  6911. ; -----------------------------------------------------------------------------
  6912. ; Tree content
  6913. ; -----------------------------------------------------------------------------
  6914. [Tree content]
  6915. Apache - Apache-specific Functions
  6916.  apache_child_terminate
  6917.  apache_get_version
  6918.  apache_lookup_uri
  6919.  apache_note
  6920.  apache_request_headers
  6921.  apache_response_headers
  6922.  apache_setenv
  6923.  ascii2ebcdic
  6924.  ebcdic2ascii
  6925.  getallheaders
  6926.  virtual
  6927. Arrays - Array Functions
  6928.  array_change_key_case
  6929.  array_chunk
  6930.  array_combine
  6931.  array_count_values
  6932.  array_diff_assoc
  6933.  array_diff_uassoc
  6934.  array_diff
  6935.  array_fill
  6936.  array_filter
  6937.  array_flip
  6938.  array_intersect_assoc
  6939.  array_intersect
  6940.  array_key_exists
  6941.  array_keys
  6942.  array_map
  6943.  array_merge_recursive
  6944.  array_merge
  6945.  array_multisort
  6946.  array_pad
  6947.  array_pop
  6948.  array_push
  6949.  array_rand
  6950.  array_reduce
  6951.  array_reverse
  6952.  array_search
  6953.  array_shift
  6954.  array_slice
  6955.  array_splice
  6956.  array_sum
  6957.  array_udiff_assoc
  6958.  array_udiff_uassoc
  6959.  array_udiff
  6960.  array_unique
  6961.  array_unshift
  6962.  array_values
  6963.  array_walk
  6964.  array
  6965.  arsort
  6966.  asort
  6967.  compact
  6968.  count
  6969.  current
  6970.  each
  6971.  end
  6972.  extract
  6973.  in_array
  6974.  key
  6975.  krsort
  6976.  ksort
  6977.  list
  6978.  natcasesort
  6979.  natsort
  6980.  next
  6981.  pos
  6982.  prev
  6983.  range
  6984.  reset
  6985.  rsort
  6986.  shuffle
  6987.  sizeof
  6988.  sort
  6989.  uasort
  6990.  uksort
  6991.  usort
  6992. Aspell - Aspell functions [deprecated]
  6993.  aspell_check_raw
  6994.  aspell_check
  6995.  aspell_new
  6996.  aspell_suggest
  6997. BC math - BCMath Arbitrary Precision Mathematics Functions
  6998.  bcadd
  6999.  bccomp
  7000.  bcdiv
  7001.  bcmod
  7002.  bcmul
  7003.  bcpow
  7004.  bcpowmod
  7005.  bcscale
  7006.  bcsqrt
  7007.  bcsub
  7008. Bzip2 - Bzip2 Compression Functions
  7009.  bzclose
  7010.  bzcompress
  7011.  bzdecompress
  7012.  bzerrno
  7013.  bzerror
  7014.  bzerrstr
  7015.  bzflush
  7016.  bzopen
  7017.  bzread
  7018.  bzwrite
  7019. Calendar - Calendar functions
  7020.  cal_days_in_month
  7021.  cal_from_jd
  7022.  cal_info
  7023.  cal_to_jd
  7024.  easter_date
  7025.  easter_days
  7026.  FrenchToJD
  7027.  GregorianToJD
  7028.  JDDayOfWeek
  7029.  JDMonthName
  7030.  JDToFrench
  7031.  JDToGregorian
  7032.  jdtojewish
  7033.  JDToJulian
  7034.  jdtounix
  7035.  JewishToJD
  7036.  JulianToJD
  7037.  unixtojd
  7038. CCVS - CCVS API Functions
  7039.  ccvs_add
  7040.  ccvs_auth
  7041.  ccvs_command
  7042.  ccvs_count
  7043.  ccvs_delete
  7044.  ccvs_done
  7045.  ccvs_init
  7046.  ccvs_lookup
  7047.  ccvs_new
  7048.  ccvs_report
  7049.  ccvs_return
  7050.  ccvs_reverse
  7051.  ccvs_sale
  7052.  ccvs_status
  7053.  ccvs_textvalue
  7054.  ccvs_void
  7055. COM - COM support functions for Windows
  7056.  COM
  7057.  VARIANT
  7058.  com_addref
  7059.  com_get
  7060.  com_invoke
  7061.  com_isenum
  7062.  com_load_typelib
  7063.  com_load
  7064.  com_propget
  7065.  com_propput
  7066.  com_propset
  7067.  com_release
  7068.  com_set
  7069. Classes/Objects - Class/Object Functions
  7070.  call_user_method_array
  7071.  call_user_method
  7072.  class_exists
  7073.  get_class_methods
  7074.  get_class_vars
  7075.  get_class
  7076.  get_declared_classes
  7077.  get_object_vars
  7078.  get_parent_class
  7079.  is_a
  7080.  is_subclass_of
  7081.  method_exists
  7082. ClibPDF - ClibPDF functions
  7083.  cpdf_add_annotation
  7084.  cpdf_add_outline
  7085.  cpdf_arc
  7086.  cpdf_begin_text
  7087.  cpdf_circle
  7088.  cpdf_clip
  7089.  cpdf_close
  7090.  cpdf_closepath_fill_stroke
  7091.  cpdf_closepath_stroke
  7092.  cpdf_closepath
  7093.  cpdf_continue_text
  7094.  cpdf_curveto
  7095.  cpdf_end_text
  7096.  cpdf_fill_stroke
  7097.  cpdf_fill
  7098.  cpdf_finalize_page
  7099.  cpdf_finalize
  7100.  cpdf_global_set_document_limits
  7101.  cpdf_import_jpeg
  7102.  cpdf_lineto
  7103.  cpdf_moveto
  7104.  cpdf_newpath
  7105.  cpdf_open
  7106.  cpdf_output_buffer
  7107.  cpdf_page_init
  7108.  cpdf_place_inline_image
  7109.  cpdf_rect
  7110.  cpdf_restore
  7111.  cpdf_rlineto
  7112.  cpdf_rmoveto
  7113.  cpdf_rotate_text
  7114.  cpdf_rotate
  7115.  cpdf_save_to_file
  7116.  cpdf_save
  7117.  cpdf_scale
  7118.  cpdf_set_action_url
  7119.  cpdf_set_char_spacing
  7120.  cpdf_set_creator
  7121.  cpdf_set_current_page
  7122.  cpdf_set_font_directories
  7123.  cpdf_set_font_map_file
  7124.  cpdf_set_font
  7125.  cpdf_set_horiz_scaling
  7126.  cpdf_set_keywords
  7127.  cpdf_set_leading
  7128.  cpdf_set_page_animation
  7129.  cpdf_set_subject
  7130.  cpdf_set_text_matrix
  7131.  cpdf_set_text_pos
  7132.  cpdf_set_text_rendering
  7133.  cpdf_set_text_rise
  7134.  cpdf_set_title
  7135.  cpdf_set_viewer_preferences
  7136.  cpdf_set_word_spacing
  7137.  cpdf_setdash
  7138.  cpdf_setflat
  7139.  cpdf_setgray_fill
  7140.  cpdf_setgray_stroke
  7141.  cpdf_setgray
  7142.  cpdf_setlinecap
  7143.  cpdf_setlinejoin
  7144.  cpdf_setlinewidth
  7145.  cpdf_setmiterlimit
  7146.  cpdf_setrgbcolor_fill
  7147.  cpdf_setrgbcolor_stroke
  7148.  cpdf_setrgbcolor
  7149.  cpdf_show_xy
  7150.  cpdf_show
  7151.  cpdf_stringwidth
  7152.  cpdf_stroke
  7153.  cpdf_text
  7154.  cpdf_translate
  7155. Crack - Crack functions
  7156.  crack_check
  7157.  crack_closedict
  7158.  crack_getlastmessage
  7159.  crack_opendict
  7160. CURL - CURL, Client URL Library Functions
  7161.  curl_close
  7162.  curl_errno
  7163.  curl_error
  7164.  curl_exec
  7165.  curl_getinfo
  7166.  curl_init
  7167.  curl_multi_add_handle
  7168.  curl_multi_close
  7169.  curl_multi_exec
  7170.  curl_multi_getcontent
  7171.  curl_multi_info_read
  7172.  curl_multi_init
  7173.  curl_multi_remove_handle
  7174.  curl_multi_select
  7175.  curl_setopt
  7176.  curl_version
  7177. Cybercash - Cybercash payment functions
  7178.  cybercash_base64_decode
  7179.  cybercash_base64_encode
  7180.  cybercash_decr
  7181.  cybercash_encr
  7182. Cyrus IMAP - Cyrus IMAP administration functions
  7183.  cyrus_authenticate
  7184.  cyrus_bind
  7185.  cyrus_close
  7186.  cyrus_connect
  7187.  cyrus_query
  7188.  cyrus_unbind
  7189. ctype - Character type functions
  7190.  ctype_alnum
  7191.  ctype_alpha
  7192.  ctype_cntrl
  7193.  ctype_digit
  7194.  ctype_graph
  7195.  ctype_lower
  7196.  ctype_print
  7197.  ctype_punct
  7198.  ctype_space
  7199.  ctype_upper
  7200.  ctype_xdigit
  7201. dba - Database (dbm-style) abstraction layer functions
  7202.  dba_close
  7203.  dba_delete
  7204.  dba_exists
  7205.  dba_fetch
  7206.  dba_firstkey
  7207.  dba_handlers
  7208.  dba_insert
  7209.  dba_key_split
  7210.  dba_list
  7211.  dba_nextkey
  7212.  dba_open
  7213.  dba_optimize
  7214.  dba_popen
  7215.  dba_replace
  7216.  dba_sync
  7217. Date/Time - Date and Time functions
  7218.  checkdate
  7219.  date
  7220.  getdate
  7221.  gettimeofday
  7222.  gmdate
  7223.  gmmktime
  7224.  gmstrftime
  7225.  localtime
  7226.  microtime
  7227.  mktime
  7228.  strftime
  7229.  strtotime
  7230.  time
  7231. dBase - dBase functions
  7232.  dbase_add_record
  7233.  dbase_close
  7234.  dbase_create
  7235.  dbase_delete_record
  7236.  dbase_get_header_info
  7237.  dbase_get_record_with_names
  7238.  dbase_get_record
  7239.  dbase_numfields
  7240.  dbase_numrecords
  7241.  dbase_open
  7242.  dbase_pack
  7243.  dbase_replace_record
  7244. DBM - DBM Functions [deprecated]
  7245.  dblist
  7246.  dbmclose
  7247.  dbmdelete
  7248.  dbmexists
  7249.  dbmfetch
  7250.  dbmfirstkey
  7251.  dbminsert
  7252.  dbmnextkey
  7253.  dbmopen
  7254.  dbmreplace
  7255. dbx - dbx functions
  7256.  dbx_close
  7257.  dbx_compare
  7258.  dbx_connect
  7259.  dbx_error
  7260.  dbx_escape_string
  7261.  dbx_fetch_row
  7262.  dbx_query
  7263.  dbx_sort
  7264. DB++ - DB++ Functions
  7265.  dbplus_add
  7266.  dbplus_aql
  7267.  dbplus_chdir
  7268.  dbplus_close
  7269.  dbplus_curr
  7270.  dbplus_errcode
  7271.  dbplus_errno
  7272.  dbplus_find
  7273.  dbplus_first
  7274.  dbplus_flush
  7275.  dbplus_freealllocks
  7276.  dbplus_freelock
  7277.  dbplus_freerlocks
  7278.  dbplus_getlock
  7279.  dbplus_getunique
  7280.  dbplus_info
  7281.  dbplus_last
  7282.  dbplus_lockrel
  7283.  dbplus_next
  7284.  dbplus_open
  7285.  dbplus_prev
  7286.  dbplus_rchperm
  7287.  dbplus_rcreate
  7288.  dbplus_rcrtexact
  7289.  dbplus_rcrtlike
  7290.  dbplus_resolve
  7291.  dbplus_restorepos
  7292.  dbplus_rkeys
  7293.  dbplus_ropen
  7294.  dbplus_rquery
  7295.  dbplus_rrename
  7296.  dbplus_rsecindex
  7297.  dbplus_runlink
  7298.  dbplus_rzap
  7299.  dbplus_savepos
  7300.  dbplus_setindex
  7301.  dbplus_setindexbynumber
  7302.  dbplus_sql
  7303.  dbplus_tcl
  7304.  dbplus_tremove
  7305.  dbplus_undo
  7306.  dbplus_undoprepare
  7307.  dbplus_unlockrel
  7308.  dbplus_unselect
  7309.  dbplus_update
  7310.  dbplus_xlockrel
  7311.  dbplus_xunlockrel
  7312. Direct IO - Direct IO functions
  7313.  dio_close
  7314.  dio_fcntl
  7315.  dio_open
  7316.  dio_read
  7317.  dio_seek
  7318.  dio_stat
  7319.  dio_tcsetattr
  7320.  dio_truncate
  7321.  dio_write
  7322. Directories - Directory functions
  7323.  chdir
  7324.  chroot
  7325.  dir
  7326.  closedir
  7327.  getcwd
  7328.  opendir
  7329.  readdir
  7330.  rewinddir
  7331.  scandir
  7332. DOM XML - DOM XML functions
  7333.  DomAttribute->name
  7334.  DomAttribute->specified
  7335.  DomAttribute->value
  7336.  DomDocument->add_root [deprecated]
  7337.  DomDocument->create_attribute
  7338.  DomDocument->create_cdata_section
  7339.  DomDocument->create_comment
  7340.  DomDocument->create_element_ns
  7341.  DomDocument->create_element
  7342.  DomDocument->create_entity_reference
  7343.  DomDocument->create_processing_instruction
  7344.  DomDocument->create_text_node
  7345.  DomDocument->doctype
  7346.  DomDocument->document_element
  7347.  DomDocument->dump_file
  7348.  DomDocument->dump_mem
  7349.  DomDocument->get_element_by_id
  7350.  DomDocument->get_elements_by_tagname
  7351.  DomDocument->html_dump_mem
  7352.  DomDocument->xinclude
  7353.  DomDocumentType->entities
  7354.  DomDocumentType->internal_subset
  7355.  DomDocumentType->name
  7356.  DomDocumentType->notations
  7357.  DomDocumentType->public_id
  7358.  DomDocumentType->system_id
  7359.  DomElement->get_attribute_node
  7360.  DomElement->get_attribute
  7361.  DomElement->get_elements_by_tagname
  7362.  DomElement->has_attribute
  7363.  DomElement->remove_attribute
  7364.  DomElement->set_attribute
  7365.  DomElement->tagname
  7366.  DomNode->add_namespace
  7367.  DomNode->append_child
  7368.  DomNode->append_sibling
  7369.  DomNode->attributes
  7370.  DomNode->child_nodes
  7371.  DomNode->clone_node
  7372.  DomNode->dump_node
  7373.  DomNode->first_child
  7374.  DomNode->get_content
  7375.  DomNode->has_attributes
  7376.  DomNode->has_child_nodes
  7377.  DomNode->insert_before
  7378.  DomNode->is_blank_node
  7379.  DomNode->last_child
  7380.  DomNode->next_sibling
  7381.  DomNode->node_name
  7382.  DomNode->node_type
  7383.  DomNode->node_value
  7384.  DomNode->owner_document
  7385.  DomNode->parent_node
  7386.  DomNode->prefix
  7387.  DomNode->previous_sibling
  7388.  DomNode->remove_child
  7389.  DomNode->replace_child
  7390.  DomNode->replace_node
  7391.  DomNode->set_content
  7392.  DomNode->set_name
  7393.  DomNode->set_namespace
  7394.  DomNode->unlink_node
  7395.  DomProcessingInstruction->data
  7396.  DomProcessingInstruction->target
  7397.  DomXsltStylesheet->process
  7398.  DomXsltStylesheet->result_dump_file
  7399.  DomXsltStylesheet->result_dump_mem
  7400.  domxml_new_doc
  7401.  domxml_open_file
  7402.  domxml_open_mem
  7403.  domxml_version
  7404.  domxml_xmltree
  7405.  domxml_xslt_stylesheet_doc
  7406.  domxml_xslt_stylesheet_file
  7407.  domxml_xslt_stylesheet
  7408.  xpath_eval_expression
  7409.  xpath_eval
  7410.  xpath_new_context
  7411.  xptr_eval
  7412.  xptr_new_context
  7413. .NET - .NET functions
  7414.  dotnet_load
  7415. Errors and Logging - Error Handling and Logging Functions
  7416.  debug_backtrace
  7417.  debug_print_backtrace
  7418.  error_log
  7419.  error_reporting
  7420.  restore_error_handler
  7421.  set_error_handler
  7422.  trigger_error
  7423.  user_error
  7424. fam - File alteration monitor functions
  7425.  fam_cancel_monitor
  7426.  fam_close
  7427.  fam_monitor_collection
  7428.  fam_monitor_directory
  7429.  fam_monitor_file
  7430.  fam_next_event
  7431.  fam_open
  7432.  fam_pending
  7433.  fam_resume_monitor
  7434.  fam_suspend_monitor
  7435. FrontBase - FrontBase Functions
  7436.  fbsql_affected_rows
  7437.  fbsql_autocommit
  7438.  fbsql_change_user
  7439.  fbsql_close
  7440.  fbsql_commit
  7441.  fbsql_connect
  7442.  fbsql_create_blob
  7443.  fbsql_create_clob
  7444.  fbsql_create_db
  7445.  fbsql_data_seek
  7446.  fbsql_database_password
  7447.  fbsql_database
  7448.  fbsql_db_query
  7449.  fbsql_db_status
  7450.  fbsql_drop_db
  7451.  fbsql_errno
  7452.  fbsql_error
  7453.  fbsql_fetch_array
  7454.  fbsql_fetch_assoc
  7455.  fbsql_fetch_field
  7456.  fbsql_fetch_lengths
  7457.  fbsql_fetch_object
  7458.  fbsql_fetch_row
  7459.  fbsql_field_flags
  7460.  fbsql_field_len
  7461.  fbsql_field_name
  7462.  fbsql_field_seek
  7463.  fbsql_field_table
  7464.  fbsql_field_type
  7465.  fbsql_free_result
  7466.  fbsql_get_autostart_info
  7467.  fbsql_hostname
  7468.  fbsql_insert_id
  7469.  fbsql_list_dbs
  7470.  fbsql_list_fields
  7471.  fbsql_list_tables
  7472.  fbsql_next_result
  7473.  fbsql_num_fields
  7474.  fbsql_num_rows
  7475.  fbsql_password
  7476.  fbsql_pconnect
  7477.  fbsql_query
  7478.  fbsql_read_blob
  7479.  fbsql_read_clob
  7480.  fbsql_result
  7481.  fbsql_rollback
  7482.  fbsql_select_db
  7483.  fbsql_set_lob_mode
  7484.  fbsql_set_transaction
  7485.  fbsql_start_db
  7486.  fbsql_stop_db
  7487.  fbsql_tablename
  7488.  fbsql_username
  7489.  fbsql_warnings
  7490. filePro - filePro functions
  7491.  filepro_fieldcount
  7492.  filepro_fieldname
  7493.  filepro_fieldtype
  7494.  filepro_fieldwidth
  7495.  filepro_retrieve
  7496.  filepro_rowcount
  7497.  filepro
  7498. Filesystem - Filesystem functions
  7499.  basename
  7500.  chgrp
  7501.  chmod
  7502.  chown
  7503.  clearstatcache
  7504.  copy
  7505.  delete
  7506.  dirname
  7507.  disk_free_space
  7508.  disk_total_space
  7509.  diskfreespace
  7510.  fclose
  7511.  feof
  7512.  fflush
  7513.  fgetc
  7514.  fgetcsv
  7515.  fgets
  7516.  fgetss
  7517.  file_exists
  7518.  file_get_contents
  7519.  file_put_contents
  7520.  file
  7521.  fileatime
  7522.  filectime
  7523.  filegroup
  7524.  fileinode
  7525.  filemtime
  7526.  fileowner
  7527.  fileperms
  7528.  filesize
  7529.  filetype
  7530.  flock
  7531.  fnmatch
  7532.  fopen
  7533.  fpassthru
  7534.  fputs
  7535.  fread
  7536.  fscanf
  7537.  fseek
  7538.  fstat
  7539.  ftell
  7540.  ftruncate
  7541.  fwrite
  7542.  glob
  7543.  is_dir
  7544.  is_executable
  7545.  is_file
  7546.  is_link
  7547.  is_readable
  7548.  is_uploaded_file
  7549.  is_writable
  7550.  is_writeable
  7551.  link
  7552.  linkinfo
  7553.  lstat
  7554.  mkdir
  7555.  move_uploaded_file
  7556.  parse_ini_file
  7557.  pathinfo
  7558.  pclose
  7559.  popen
  7560.  readfile
  7561.  readlink
  7562.  realpath
  7563.  rename
  7564.  rewind
  7565.  rmdir
  7566.  set_file_buffer
  7567.  stat
  7568.  symlink
  7569.  tempnam
  7570.  tmpfile
  7571.  touch
  7572.  umask
  7573.  unlink
  7574. FDF - Forms Data Format functions
  7575.  fdf_add_doc_javascript
  7576.  fdf_add_template
  7577.  fdf_close
  7578.  fdf_create
  7579.  fdf_enum_values
  7580.  fdf_errno
  7581.  fdf_error
  7582.  fdf_get_ap
  7583.  fdf_get_attachment
  7584.  fdf_get_encoding
  7585.  fdf_get_file
  7586.  fdf_get_flags
  7587.  fdf_get_opt
  7588.  fdf_get_status
  7589.  fdf_get_value
  7590.  fdf_get_version
  7591.  fdf_header
  7592.  fdf_next_field_name
  7593.  fdf_open_string
  7594.  fdf_open
  7595.  fdf_remove_item
  7596.  fdf_save_string
  7597.  fdf_save
  7598.  fdf_set_ap
  7599.  fdf_set_encoding
  7600.  fdf_set_file
  7601.  fdf_set_flags
  7602.  fdf_set_javascript_action
  7603.  fdf_set_opt
  7604.  fdf_set_status
  7605.  fdf_set_submit_form_action
  7606.  fdf_set_target_frame
  7607.  fdf_set_value
  7608.  fdf_set_version
  7609. FriBiDi - FriBiDi functions
  7610.  fribidi_log2vis
  7611. FTP - FTP functions
  7612.  ftp_alloc
  7613.  ftp_cdup
  7614.  ftp_chdir
  7615.  ftp_chmod
  7616.  ftp_close
  7617.  ftp_connect
  7618.  ftp_delete
  7619.  ftp_exec
  7620.  ftp_fget
  7621.  ftp_fput
  7622.  ftp_get_option
  7623.  ftp_get
  7624.  ftp_login
  7625.  ftp_mdtm
  7626.  ftp_mkdir
  7627.  ftp_nb_continue
  7628.  ftp_nb_fget
  7629.  ftp_nb_fput
  7630.  ftp_nb_get
  7631.  ftp_nb_put
  7632.  ftp_nlist
  7633.  ftp_pasv
  7634.  ftp_put
  7635.  ftp_pwd
  7636.  ftp_quit
  7637.  ftp_raw
  7638.  ftp_rawlist
  7639.  ftp_rename
  7640.  ftp_rmdir
  7641.  ftp_set_option
  7642.  ftp_site
  7643.  ftp_size
  7644.  ftp_ssl_connect
  7645.  ftp_systype
  7646. Function handling - Function Handling functions
  7647.  call_user_func_array
  7648.  call_user_func
  7649.  create_function
  7650.  func_get_arg
  7651.  func_get_args
  7652.  func_num_args
  7653.  function_exists
  7654.  get_defined_functions
  7655.  register_shutdown_function
  7656.  register_tick_function
  7657.  unregister_tick_function
  7658. gettext - Gettext
  7659.  bind_textdomain_codeset
  7660.  bindtextdomain
  7661.  dcgettext
  7662.  dcngettext
  7663.  dgettext
  7664.  dngettext
  7665.  gettext
  7666.  ngettext
  7667.  textdomain
  7668. GMP - GMP functions
  7669.  gmp_abs
  7670.  gmp_add
  7671.  gmp_and
  7672.  gmp_clrbit
  7673.  gmp_cmp
  7674.  gmp_com
  7675.  gmp_div_q
  7676.  gmp_div_qr
  7677.  gmp_div_r
  7678.  gmp_div
  7679.  gmp_divexact
  7680.  gmp_fact
  7681.  gmp_gcd
  7682.  gmp_gcdext
  7683.  gmp_hamdist
  7684.  gmp_init
  7685.  gmp_intval
  7686.  gmp_invert
  7687.  gmp_jacobi
  7688.  gmp_legendre
  7689.  gmp_mod
  7690.  gmp_mul
  7691.  gmp_neg
  7692.  gmp_or
  7693.  gmp_perfect_square
  7694.  gmp_popcount
  7695.  gmp_pow
  7696.  gmp_powm
  7697.  gmp_prob_prime
  7698.  gmp_random
  7699.  gmp_scan0
  7700.  gmp_scan1
  7701.  gmp_setbit
  7702.  gmp_sign
  7703.  gmp_sqrt
  7704.  gmp_sqrtrm
  7705.  gmp_strval
  7706.  gmp_sub
  7707.  gmp_xor
  7708. HTTP - HTTP functions
  7709.  header
  7710.  headers_list
  7711.  headers_sent
  7712.  setcookie
  7713. Hyperwave - Hyperwave functions
  7714.  hw_Array2Objrec
  7715.  hw_changeobject
  7716.  hw_Children
  7717.  hw_ChildrenObj
  7718.  hw_Close
  7719.  hw_Connect
  7720.  hw_connection_info
  7721.  hw_cp
  7722.  hw_Deleteobject
  7723.  hw_DocByAnchor
  7724.  hw_DocByAnchorObj
  7725.  hw_Document_Attributes
  7726.  hw_Document_BodyTag
  7727.  hw_Document_Content
  7728.  hw_Document_SetContent
  7729.  hw_Document_Size
  7730.  hw_dummy
  7731.  hw_EditText
  7732.  hw_Error
  7733.  hw_ErrorMsg
  7734.  hw_Free_Document
  7735.  hw_GetAnchors
  7736.  hw_GetAnchorsObj
  7737.  hw_GetAndLock
  7738.  hw_GetChildColl
  7739.  hw_GetChildCollObj
  7740.  hw_GetChildDocColl
  7741.  hw_GetChildDocCollObj
  7742.  hw_GetObject
  7743.  hw_GetObjectByQuery
  7744.  hw_GetObjectByQueryColl
  7745.  hw_GetObjectByQueryCollObj
  7746.  hw_GetObjectByQueryObj
  7747.  hw_GetParents
  7748.  hw_GetParentsObj
  7749.  hw_getrellink
  7750.  hw_GetRemote
  7751.  hw_getremotechildren
  7752.  hw_GetSrcByDestObj
  7753.  hw_GetText
  7754.  hw_getusername
  7755.  hw_Identify
  7756.  hw_InCollections
  7757.  hw_Info
  7758.  hw_InsColl
  7759.  hw_InsDoc
  7760.  hw_insertanchors
  7761.  hw_InsertDocument
  7762.  hw_InsertObject
  7763.  hw_mapid
  7764.  hw_Modifyobject
  7765.  hw_mv
  7766.  hw_New_Document
  7767.  hw_objrec2array
  7768.  hw_Output_Document
  7769.  hw_pConnect
  7770.  hw_PipeDocument
  7771.  hw_Root
  7772.  hw_setlinkroot
  7773.  hw_stat
  7774.  hw_Unlock
  7775.  hw_Who
  7776. Hyperwave API - Hyperwave API functions
  7777.  hw_api_attribute->key
  7778.  hw_api_attribute->langdepvalue
  7779.  hw_api_attribute->value
  7780.  hw_api_attribute->values
  7781.  hw_api_attribute
  7782.  hw_api->checkin
  7783.  hw_api->checkout
  7784.  hw_api->children
  7785.  hw_api_content->mimetype
  7786.  hw_api_content->read
  7787.  hw_api->content
  7788.  hw_api->copy
  7789.  hw_api->dbstat
  7790.  hw_api->dcstat
  7791.  hw_api->dstanchors
  7792.  hw_api->dstofsrcanchors
  7793.  hw_api_error->count
  7794.  hw_api_error->reason
  7795.  hw_api->find
  7796.  hw_api->ftstat
  7797.  hwapi_hgcsp
  7798.  hw_api->hwstat
  7799.  hw_api->identify
  7800.  hw_api->info
  7801.  hw_api->insert
  7802.  hw_api->insertanchor
  7803.  hw_api->insertcollection
  7804.  hw_api->insertdocument
  7805.  hw_api->link
  7806.  hw_api->lock
  7807.  hw_api->move
  7808.  hw_api_content
  7809.  hw_api_object->assign
  7810.  hw_api_object->attreditable
  7811.  hw_api_object->count
  7812.  hw_api_object->insert
  7813.  hw_api_object
  7814.  hw_api_object->remove
  7815.  hw_api_object->title
  7816.  hw_api_object->value
  7817.  hw_api->object
  7818.  hw_api->objectbyanchor
  7819.  hw_api->parents
  7820.  hw_api_reason->description
  7821.  hw_api_reason->type
  7822.  hw_api->remove
  7823.  hw_api->replace
  7824.  hw_api->setcommitedversion
  7825.  hw_api->srcanchors
  7826.  hw_api->srcsofdst
  7827.  hw_api->unlock
  7828.  hw_api->user
  7829.  hw_api->userlist
  7830. iconv - iconv functions
  7831.  iconv_get_encoding
  7832.  iconv_mime_decode
  7833.  iconv_mime_encode
  7834.  iconv_set_encoding
  7835.  iconv_strlen
  7836.  iconv_strpos
  7837.  iconv_strrpos
  7838.  iconv_substr
  7839.  iconv
  7840.  ob_iconv_handler
  7841. Image - Image functions
  7842.  exif_imagetype
  7843.  exif_read_data
  7844.  exif_thumbnail
  7845.  gd_info
  7846.  getimagesize
  7847.  image_type_to_mime_type
  7848.  image2wbmp
  7849.  imagealphablending
  7850.  imageantialias
  7851.  imagearc
  7852.  imagechar
  7853.  imagecharup
  7854.  imagecolorallocate
  7855.  imagecolorallocatealpha
  7856.  imagecolorat
  7857.  imagecolorclosest
  7858.  imagecolorclosestalpha
  7859.  imagecolorclosesthwb
  7860.  imagecolordeallocate
  7861.  imagecolorexact
  7862.  imagecolorexactalpha
  7863.  imagecolormatch
  7864.  imagecolorresolve
  7865.  imagecolorresolvealpha
  7866.  imagecolorset
  7867.  imagecolorsforindex
  7868.  imagecolorstotal
  7869.  imagecolortransparent
  7870.  imagecopy
  7871.  imagecopymerge
  7872.  imagecopymergegray
  7873.  imagecopyresampled
  7874.  imagecopyresized
  7875.  imagecreate
  7876.  imagecreatefromgd2
  7877.  imagecreatefromgd2part
  7878.  imagecreatefromgd
  7879.  imagecreatefromgif
  7880.  imagecreatefromjpeg
  7881.  imagecreatefrompng
  7882.  imagecreatefromstring
  7883.  imagecreatefromwbmp
  7884.  imagecreatefromxbm
  7885.  imagecreatefromxpm
  7886.  imagecreatetruecolor
  7887.  imagedashedline
  7888.  imagedestroy
  7889.  imageellipse
  7890.  imagefill
  7891.  imagefilledarc
  7892.  imagefilledellipse
  7893.  imagefilledpolygon
  7894.  imagefilledrectangle
  7895.  imagefilltoborder
  7896.  imagefontheight
  7897.  imagefontwidth
  7898.  imageftbbox
  7899.  imagefttext
  7900.  imagegammacorrect
  7901.  imagegd2
  7902.  imagegd
  7903.  imagegif
  7904.  imageinterlace
  7905.  imageistruecolor
  7906.  imagejpeg
  7907.  imageline
  7908.  imageloadfont
  7909.  imagepalettecopy
  7910.  imagepng
  7911.  imagepolygon
  7912.  imagepsbbox
  7913.  imagepscopyfont
  7914.  imagepsencodefont
  7915.  imagepsextendfont
  7916.  imagepsfreefont
  7917.  imagepsloadfont
  7918.  imagepsslantfont
  7919.  imagepstext
  7920.  imagerectangle
  7921.  imagerotate
  7922.  imagesavealpha
  7923.  imagesetbrush
  7924.  imagesetpixel
  7925.  imagesetstyle
  7926.  imagesetthickness
  7927.  imagesettile
  7928.  imagestring
  7929.  imagestringup
  7930.  imagesx
  7931.  imagesy
  7932.  imagetruecolortopalette
  7933.  imagettfbbox
  7934.  imagettftext
  7935.  imagetypes
  7936.  imagewbmp
  7937.  iptcembed
  7938.  iptcparse
  7939.  jpeg2wbmp
  7940.  png2wbmp
  7941.  read_exif_data
  7942. IMAP - IMAP, POP3 and NNTP functions
  7943.  imap_8bit
  7944.  imap_alerts
  7945.  imap_append
  7946.  imap_base64
  7947.  imap_binary
  7948.  imap_body
  7949.  imap_bodystruct
  7950.  imap_check
  7951.  imap_clearflag_full
  7952.  imap_close
  7953.  imap_createmailbox
  7954.  imap_delete
  7955.  imap_deletemailbox
  7956.  imap_errors
  7957.  imap_expunge
  7958.  imap_fetch_overview
  7959.  imap_fetchbody
  7960.  imap_fetchheader
  7961.  imap_fetchstructure
  7962.  imap_get_quota
  7963.  imap_get_quotaroot
  7964.  imap_getacl
  7965.  imap_getmailboxes
  7966.  imap_getsubscribed
  7967.  imap_header
  7968.  imap_headerinfo
  7969.  imap_headers
  7970.  imap_last_error
  7971.  imap_list
  7972.  imap_listmailbox
  7973.  imap_listscan
  7974.  imap_listsubscribed
  7975.  imap_lsub
  7976.  imap_mail_compose
  7977.  imap_mail_copy
  7978.  imap_mail_move
  7979.  imap_mail
  7980.  imap_mailboxmsginfo
  7981.  imap_mime_header_decode
  7982.  imap_msgno
  7983.  imap_num_msg
  7984.  imap_num_recent
  7985.  imap_open
  7986.  imap_ping
  7987.  imap_qprint
  7988.  imap_renamemailbox
  7989.  imap_reopen
  7990.  imap_rfc822_parse_adrlist
  7991.  imap_rfc822_parse_headers
  7992.  imap_rfc822_write_address
  7993.  imap_scanmailbox
  7994.  imap_search
  7995.  imap_set_quota
  7996.  imap_setacl
  7997.  imap_setflag_full
  7998.  imap_sort
  7999.  imap_status
  8000.  imap_subscribe
  8001.  imap_thread
  8002.  imap_timeout
  8003.  imap_uid
  8004.  imap_undelete
  8005.  imap_unsubscribe
  8006.  imap_utf7_decode
  8007.  imap_utf7_encode
  8008.  imap_utf8
  8009. Informix - Informix functions
  8010.  ifx_affected_rows
  8011.  ifx_blobinfile_mode
  8012.  ifx_byteasvarchar
  8013.  ifx_close
  8014.  ifx_connect
  8015.  ifx_copy_blob
  8016.  ifx_create_blob
  8017.  ifx_create_char
  8018.  ifx_do
  8019.  ifx_error
  8020.  ifx_errormsg
  8021.  ifx_fetch_row
  8022.  ifx_fieldproperties
  8023.  ifx_fieldtypes
  8024.  ifx_free_blob
  8025.  ifx_free_char
  8026.  ifx_free_result
  8027.  ifx_get_blob
  8028.  ifx_get_char
  8029.  ifx_getsqlca
  8030.  ifx_htmltbl_result
  8031.  ifx_nullformat
  8032.  ifx_num_fields
  8033.  ifx_num_rows
  8034.  ifx_pconnect
  8035.  ifx_prepare
  8036.  ifx_query
  8037.  ifx_textasvarchar
  8038.  ifx_update_blob
  8039.  ifx_update_char
  8040.  ifxus_close_slob
  8041.  ifxus_create_slob
  8042.  ifxus_free_slob
  8043.  ifxus_open_slob
  8044.  ifxus_read_slob
  8045.  ifxus_seek_slob
  8046.  ifxus_tell_slob
  8047.  ifxus_write_slob
  8048. InterBase - InterBase functions
  8049.  ibase_add_user
  8050.  ibase_affected_rows
  8051.  ibase_blob_add
  8052.  ibase_blob_cancel
  8053.  ibase_blob_close
  8054.  ibase_blob_create
  8055.  ibase_blob_echo
  8056.  ibase_blob_get
  8057.  ibase_blob_import
  8058.  ibase_blob_info
  8059.  ibase_blob_open
  8060.  ibase_close
  8061.  ibase_commit_ret
  8062.  ibase_commit
  8063.  ibase_connect
  8064.  ibase_delete_user
  8065.  ibase_drop_db
  8066.  ibase_errcode
  8067.  ibase_errmsg
  8068.  ibase_execute
  8069.  ibase_fetch_assoc
  8070.  ibase_fetch_object
  8071.  ibase_fetch_row
  8072.  ibase_field_info
  8073.  ibase_free_event_handler
  8074.  ibase_free_query
  8075.  ibase_free_result
  8076.  ibase_gen_id
  8077.  ibase_modify_user
  8078.  ibase_name_result
  8079.  ibase_num_fields
  8080.  ibase_num_params
  8081.  ibase_param_info
  8082.  ibase_pconnect
  8083.  ibase_prepare
  8084.  ibase_query
  8085.  ibase_rollback_ret
  8086.  ibase_rollback
  8087.  ibase_set_event_handler
  8088.  ibase_timefmt
  8089.  ibase_trans
  8090.  ibase_wait_event
  8091. Ingres II - Ingres II functions
  8092.  ingres_autocommit
  8093.  ingres_close
  8094.  ingres_commit
  8095.  ingres_connect
  8096.  ingres_fetch_array
  8097.  ingres_fetch_object
  8098.  ingres_fetch_row
  8099.  ingres_field_length
  8100.  ingres_field_name
  8101.  ingres_field_nullable
  8102.  ingres_field_precision
  8103.  ingres_field_scale
  8104.  ingres_field_type
  8105.  ingres_num_fields
  8106.  ingres_num_rows
  8107.  ingres_pconnect
  8108.  ingres_query
  8109.  ingres_rollback
  8110. IRC Gateway - IRC Gateway Functions
  8111.  ircg_channel_mode
  8112.  ircg_disconnect
  8113.  ircg_fetch_error_msg
  8114.  ircg_get_username
  8115.  ircg_html_encode
  8116.  ircg_ignore_add
  8117.  ircg_ignore_del
  8118.  ircg_is_conn_alive
  8119.  ircg_join
  8120.  ircg_kick
  8121.  ircg_lookup_format_messages
  8122.  ircg_msg
  8123.  ircg_nick
  8124.  ircg_nickname_escape
  8125.  ircg_nickname_unescape
  8126.  ircg_notice
  8127.  ircg_part
  8128.  ircg_pconnect
  8129.  ircg_register_format_messages
  8130.  ircg_set_current
  8131.  ircg_set_file
  8132.  ircg_set_on_die
  8133.  ircg_topic
  8134.  ircg_whois
  8135. Java - PHP / Java Integration
  8136.  java_last_exception_clear
  8137.  java_last_exception_get
  8138. LDAP - LDAP functions
  8139.  ldap_8859_to_t61
  8140.  ldap_add
  8141.  ldap_bind
  8142.  ldap_close
  8143.  ldap_compare
  8144.  ldap_connect
  8145.  ldap_count_entries
  8146.  ldap_delete
  8147.  ldap_dn2ufn
  8148.  ldap_err2str
  8149.  ldap_errno
  8150.  ldap_error
  8151.  ldap_explode_dn
  8152.  ldap_first_attribute
  8153.  ldap_first_entry
  8154.  ldap_first_reference
  8155.  ldap_free_result
  8156.  ldap_get_attributes
  8157.  ldap_get_dn
  8158.  ldap_get_entries
  8159.  ldap_get_option
  8160.  ldap_get_values_len
  8161.  ldap_get_values
  8162.  ldap_list
  8163.  ldap_mod_add
  8164.  ldap_mod_del
  8165.  ldap_mod_replace
  8166.  ldap_modify
  8167.  ldap_next_attribute
  8168.  ldap_next_entry
  8169.  ldap_next_reference
  8170.  ldap_parse_reference
  8171.  ldap_parse_result
  8172.  ldap_read
  8173.  ldap_rename
  8174.  ldap_search
  8175.  ldap_set_option
  8176.  ldap_set_rebind_proc
  8177.  ldap_sort
  8178.  ldap_start_tls
  8179.  ldap_t61_to_8859
  8180.  ldap_unbind
  8181. Mail - Mail functions
  8182.  ezmlm_hash
  8183.  mail
  8184. mailparse - mailparse functions
  8185.  mailparse_determine_best_xfer_encoding
  8186.  mailparse_msg_create
  8187.  mailparse_msg_extract_part_file
  8188.  mailparse_msg_extract_part
  8189.  mailparse_msg_free
  8190.  mailparse_msg_get_part_data
  8191.  mailparse_msg_get_part
  8192.  mailparse_msg_get_structure
  8193.  mailparse_msg_parse_file
  8194.  mailparse_msg_parse
  8195.  mailparse_rfc822_parse_addresses
  8196.  mailparse_stream_encode
  8197.  mailparse_uudecode_all
  8198. Math - Mathematical Functions
  8199.  abs
  8200.  acos
  8201.  acosh
  8202.  asin
  8203.  asinh
  8204.  atan2
  8205.  atan
  8206.  atanh
  8207.  base_convert
  8208.  bindec
  8209.  ceil
  8210.  cos
  8211.  cosh
  8212.  decbin
  8213.  dechex
  8214.  decoct
  8215.  deg2rad
  8216.  exp
  8217.  expm1
  8218.  floor
  8219.  fmod
  8220.  getrandmax
  8221.  hexdec
  8222.  hypot
  8223.  is_finite
  8224.  is_infinite
  8225.  is_nan
  8226.  lcg_value
  8227.  log10
  8228.  log1p
  8229.  log
  8230.  max
  8231.  min
  8232.  mt_getrandmax
  8233.  mt_rand
  8234.  mt_srand
  8235.  octdec
  8236.  pi
  8237.  pow
  8238.  rad2deg
  8239.  rand
  8240.  round
  8241.  sin
  8242.  sinh
  8243.  sqrt
  8244.  srand
  8245.  tan
  8246.  tanh
  8247. Multi-Byte String - Multi-Byte String Functions
  8248.  mb_convert_case
  8249.  mb_convert_encoding
  8250.  mb_convert_kana
  8251.  mb_convert_variables
  8252.  mb_decode_mimeheader
  8253.  mb_decode_numericentity
  8254.  mb_detect_encoding
  8255.  mb_detect_order
  8256.  mb_encode_mimeheader
  8257.  mb_encode_numericentity
  8258.  mb_ereg_match
  8259.  mb_ereg_replace
  8260.  mb_ereg_search_getpos
  8261.  mb_ereg_search_getregs
  8262.  mb_ereg_search_init
  8263.  mb_ereg_search_pos
  8264.  mb_ereg_search_regs
  8265.  mb_ereg_search_setpos
  8266.  mb_ereg_search
  8267.  mb_ereg
  8268.  mb_eregi_replace
  8269.  mb_eregi
  8270.  mb_get_info
  8271.  mb_http_input
  8272.  mb_http_output
  8273.  mb_internal_encoding
  8274.  mb_language
  8275.  mb_output_handler
  8276.  mb_parse_str
  8277.  mb_preferred_mime_name
  8278.  mb_regex_encoding
  8279.  mb_regex_set_options
  8280.  mb_send_mail
  8281.  mb_split
  8282.  mb_strcut
  8283.  mb_strimwidth
  8284.  mb_strlen
  8285.  mb_strpos
  8286.  mb_strrpos
  8287.  mb_strtolower
  8288.  mb_strtoupper
  8289.  mb_strwidth
  8290.  mb_substitute_character
  8291.  mb_substr_count
  8292.  mb_substr
  8293. MCAL - MCAL functions
  8294.  mcal_append_event
  8295.  mcal_close
  8296.  mcal_create_calendar
  8297.  mcal_date_compare
  8298.  mcal_date_valid
  8299.  mcal_day_of_week
  8300.  mcal_day_of_year
  8301.  mcal_days_in_month
  8302.  mcal_delete_calendar
  8303.  mcal_delete_event
  8304.  mcal_event_add_attribute
  8305.  mcal_event_init
  8306.  mcal_event_set_alarm
  8307.  mcal_event_set_category
  8308.  mcal_event_set_class
  8309.  mcal_event_set_description
  8310.  mcal_event_set_end
  8311.  mcal_event_set_recur_daily
  8312.  mcal_event_set_recur_monthly_mday
  8313.  mcal_event_set_recur_monthly_wday
  8314.  mcal_event_set_recur_none
  8315.  mcal_event_set_recur_weekly
  8316.  mcal_event_set_recur_yearly
  8317.  mcal_event_set_start
  8318.  mcal_event_set_title
  8319.  mcal_expunge
  8320.  mcal_fetch_current_stream_event
  8321.  mcal_fetch_event
  8322.  mcal_is_leap_year
  8323.  mcal_list_alarms
  8324.  mcal_list_events
  8325.  mcal_next_recurrence
  8326.  mcal_open
  8327.  mcal_popen
  8328.  mcal_rename_calendar
  8329.  mcal_reopen
  8330.  mcal_snooze
  8331.  mcal_store_event
  8332.  mcal_time_valid
  8333.  mcal_week_of_year
  8334. mcrypt - Mcrypt Encryption Functions
  8335.  mcrypt_cbc
  8336.  mcrypt_cfb
  8337.  mcrypt_create_iv
  8338.  mcrypt_decrypt
  8339.  mcrypt_ecb
  8340.  mcrypt_enc_get_algorithms_name
  8341.  mcrypt_enc_get_block_size
  8342.  mcrypt_enc_get_iv_size
  8343.  mcrypt_enc_get_key_size
  8344.  mcrypt_enc_get_modes_name
  8345.  mcrypt_enc_get_supported_key_sizes
  8346.  mcrypt_enc_is_block_algorithm_mode
  8347.  mcrypt_enc_is_block_algorithm
  8348.  mcrypt_enc_is_block_mode
  8349.  mcrypt_enc_self_test
  8350.  mcrypt_encrypt
  8351.  mcrypt_generic_deinit
  8352.  mcrypt_generic_end
  8353.  mcrypt_generic_init
  8354.  mcrypt_generic
  8355.  mcrypt_get_block_size
  8356.  mcrypt_get_cipher_name
  8357.  mcrypt_get_iv_size
  8358.  mcrypt_get_key_size
  8359.  mcrypt_list_algorithms
  8360.  mcrypt_list_modes
  8361.  mcrypt_module_close
  8362.  mcrypt_module_get_algo_block_size
  8363.  mcrypt_module_get_algo_key_size
  8364.  mcrypt_module_get_supported_key_sizes
  8365.  mcrypt_module_is_block_algorithm_mode
  8366.  mcrypt_module_is_block_algorithm
  8367.  mcrypt_module_is_block_mode
  8368.  mcrypt_module_open
  8369.  mcrypt_module_self_test
  8370.  mcrypt_ofb
  8371.  mdecrypt_generic
  8372. MCVE - MCVE Payment Functions
  8373.  mcve_adduser
  8374.  mcve_adduserarg
  8375.  mcve_bt
  8376.  mcve_checkstatus
  8377.  mcve_chkpwd
  8378.  mcve_chngpwd
  8379.  mcve_completeauthorizations
  8380.  mcve_connect
  8381.  mcve_connectionerror
  8382.  mcve_deleteresponse
  8383.  mcve_deletetrans
  8384.  mcve_deleteusersetup
  8385.  mcve_deluser
  8386.  mcve_destroyconn
  8387.  mcve_destroyengine
  8388.  mcve_disableuser
  8389.  mcve_edituser
  8390.  mcve_enableuser
  8391.  mcve_force
  8392.  mcve_getcell
  8393.  mcve_getcellbynum
  8394.  mcve_getcommadelimited
  8395.  mcve_getheader
  8396.  mcve_getuserarg
  8397.  mcve_getuserparam
  8398.  mcve_gft
  8399.  mcve_gl
  8400.  mcve_gut
  8401.  mcve_initconn
  8402.  mcve_initengine
  8403.  mcve_initusersetup
  8404.  mcve_iscommadelimited
  8405.  mcve_liststats
  8406.  mcve_listusers
  8407.  mcve_maxconntimeout
  8408.  mcve_monitor
  8409.  mcve_numcolumns
  8410.  mcve_numrows
  8411.  mcve_override
  8412.  mcve_parsecommadelimited
  8413.  mcve_ping
  8414.  mcve_preauth
  8415.  mcve_preauthcompletion
  8416.  mcve_qc
  8417.  mcve_responseparam
  8418.  mcve_return
  8419.  mcve_returncode
  8420.  mcve_returnstatus
  8421.  mcve_sale
  8422.  mcve_setblocking
  8423.  mcve_setdropfile
  8424.  mcve_setip
  8425.  mcve_setssl_files
  8426.  mcve_setssl
  8427.  mcve_settimeout
  8428.  mcve_settle
  8429.  mcve_text_avs
  8430.  mcve_text_code
  8431.  mcve_text_cv
  8432.  mcve_transactionauth
  8433.  mcve_transactionavs
  8434.  mcve_transactionbatch
  8435.  mcve_transactioncv
  8436.  mcve_transactionid
  8437.  mcve_transactionitem
  8438.  mcve_transactionssent
  8439.  mcve_transactiontext
  8440.  mcve_transinqueue
  8441.  mcve_transnew
  8442.  mcve_transparam
  8443.  mcve_transsend
  8444.  mcve_ub
  8445.  mcve_uwait
  8446.  mcve_verifyconnection
  8447.  mcve_verifysslcert
  8448.  mcve_void
  8449. mhash - Mhash Functions
  8450.  mhash_count
  8451.  mhash_get_block_size
  8452.  mhash_get_hash_name
  8453.  mhash_keygen_s2k
  8454.  mhash
  8455. Mimetype - Mimetype Functions
  8456.  mime_content_type
  8457. MS SQL Server - Microsoft SQL Server functions
  8458.  mssql_bind
  8459.  mssql_close
  8460.  mssql_connect
  8461.  mssql_data_seek
  8462.  mssql_execute
  8463.  mssql_fetch_array
  8464.  mssql_fetch_assoc
  8465.  mssql_fetch_batch
  8466.  mssql_fetch_field
  8467.  mssql_fetch_object
  8468.  mssql_fetch_row
  8469.  mssql_field_length
  8470.  mssql_field_name
  8471.  mssql_field_seek
  8472.  mssql_field_type
  8473.  mssql_free_result
  8474.  mssql_free_statement
  8475.  mssql_get_last_message
  8476.  mssql_guid_string
  8477.  mssql_init
  8478.  mssql_min_error_severity
  8479.  mssql_min_message_severity
  8480.  mssql_next_result
  8481.  mssql_num_fields
  8482.  mssql_num_rows
  8483.  mssql_pconnect
  8484.  mssql_query
  8485.  mssql_result
  8486.  mssql_rows_affected
  8487.  mssql_select_db
  8488. Ming (flash) - Ming functions for Flash
  8489.  ming_setcubicthreshold
  8490.  ming_setscale
  8491.  ming_useswfversion
  8492.  SWFAction
  8493.  SWFBitmap->getHeight
  8494.  SWFBitmap->getWidth
  8495.  SWFBitmap
  8496.  swfbutton_keypress
  8497.  SWFbutton->addAction
  8498.  SWFbutton->addShape
  8499.  SWFbutton->setAction
  8500.  SWFbutton->setdown
  8501.  SWFbutton->setHit
  8502.  SWFbutton->setOver
  8503.  SWFbutton->setUp
  8504.  SWFbutton
  8505.  SWFDisplayItem->addColor
  8506.  SWFDisplayItem->move
  8507.  SWFDisplayItem->moveTo
  8508.  SWFDisplayItem->multColor
  8509.  SWFDisplayItem->remove
  8510.  SWFDisplayItem->Rotate
  8511.  SWFDisplayItem->rotateTo
  8512.  SWFDisplayItem->scale
  8513.  SWFDisplayItem->scaleTo
  8514.  SWFDisplayItem->setDepth
  8515.  SWFDisplayItem->setName
  8516.  SWFDisplayItem->setRatio
  8517.  SWFDisplayItem->skewX
  8518.  SWFDisplayItem->skewXTo
  8519.  SWFDisplayItem->skewY
  8520.  SWFDisplayItem->skewYTo
  8521.  SWFDisplayItem
  8522.  SWFFill->moveTo
  8523.  SWFFill->rotateTo
  8524.  SWFFill->scaleTo
  8525.  SWFFill->skewXTo
  8526.  SWFFill->skewYTo
  8527.  SWFFill
  8528.  swffont->getwidth
  8529.  SWFFont
  8530.  SWFGradient->addEntry
  8531.  SWFGradient
  8532.  SWFMorph->getshape1
  8533.  SWFMorph->getshape2
  8534.  SWFMorph
  8535.  SWFMovie->add
  8536.  SWFMovie->nextframe
  8537.  SWFMovie->output
  8538.  swfmovie->remove
  8539.  SWFMovie->save
  8540.  SWFMovie->setbackground
  8541.  SWFMovie->setdimension
  8542.  SWFMovie->setframes
  8543.  SWFMovie->setrate
  8544.  SWFMovie->streammp3
  8545.  SWFMovie
  8546.  SWFShape->addFill
  8547.  SWFShape->drawCurve
  8548.  SWFShape->drawCurveTo
  8549.  SWFShape->drawLine
  8550.  SWFShape->drawLineTo
  8551.  SWFShape->movePen
  8552.  SWFShape->movePenTo
  8553.  SWFShape->setLeftFill
  8554.  SWFShape->setLine
  8555.  SWFShape->setRightFill
  8556.  SWFShape
  8557.  swfsprite->add
  8558.  SWFSprite->nextframe
  8559.  SWFSprite->remove
  8560.  SWFSprite->setframes
  8561.  SWFSprite
  8562.  SWFText->addString
  8563.  SWFText->getWidth
  8564.  SWFText->moveTo
  8565.  SWFText->setColor
  8566.  SWFText->setFont
  8567.  SWFText->setHeight
  8568.  SWFText->setSpacing
  8569.  SWFText
  8570.  SWFTextField->addstring
  8571.  SWFTextField->align
  8572.  SWFTextField->setbounds
  8573.  SWFTextField->setcolor
  8574.  SWFTextField->setFont
  8575.  SWFTextField->setHeight
  8576.  SWFTextField->setindentation
  8577.  SWFTextField->setLeftMargin
  8578.  SWFTextField->setLineSpacing
  8579.  SWFTextField->setMargins
  8580.  SWFTextField->setname
  8581.  SWFTextField->setrightMargin
  8582.  SWFTextField
  8583. Misc. - Miscellaneous functions
  8584.  connection_aborted
  8585.  connection_status
  8586.  connection_timeout
  8587.  constant
  8588.  define
  8589.  defined
  8590.  die
  8591.  eval
  8592.  exit
  8593.  get_browser
  8594.  highlight_file
  8595.  highlight_string
  8596.  ignore_user_abort
  8597.  pack
  8598.  show_source
  8599.  sleep
  8600.  uniqid
  8601.  unpack
  8602.  usleep
  8603. mnoGoSearch - mnoGoSearch Functions
  8604.  udm_add_search_limit
  8605.  udm_alloc_agent
  8606.  udm_api_version
  8607.  udm_cat_list
  8608.  udm_cat_path
  8609.  udm_check_charset
  8610.  udm_check_stored
  8611.  udm_clear_search_limits
  8612.  udm_close_stored
  8613.  udm_crc32
  8614.  udm_errno
  8615.  udm_error
  8616.  udm_find
  8617.  udm_free_agent
  8618.  udm_free_ispell_data
  8619.  udm_free_res
  8620.  udm_get_doc_count
  8621.  udm_get_res_field
  8622.  udm_get_res_param
  8623.  udm_load_ispell_data
  8624.  udm_open_stored
  8625.  udm_set_agent_param
  8626. mSQL - mSQL functions
  8627.  msql_affected_rows
  8628.  msql_close
  8629.  msql_connect
  8630.  msql_create_db
  8631.  msql_createdb
  8632.  msql_data_seek
  8633.  msql_dbname
  8634.  msql_drop_db
  8635.  msql_dropdb
  8636.  msql_error
  8637.  msql_fetch_array
  8638.  msql_fetch_field
  8639.  msql_fetch_object
  8640.  msql_fetch_row
  8641.  msql_field_seek
  8642.  msql_fieldflags
  8643.  msql_fieldlen
  8644.  msql_fieldname
  8645.  msql_fieldtable
  8646.  msql_fieldtype
  8647.  msql_free_result
  8648.  msql_freeresult
  8649.  msql_list_dbs
  8650.  msql_list_fields
  8651.  msql_list_tables
  8652.  msql_listdbs
  8653.  msql_listfields
  8654.  msql_listtables
  8655.  msql_num_fields
  8656.  msql_num_rows
  8657.  msql_numfields
  8658.  msql_numrows
  8659.  msql_pconnect
  8660.  msql_query
  8661.  msql_regcase
  8662.  msql_result
  8663.  msql_select_db
  8664.  msql_selectdb
  8665.  msql_tablename
  8666.  msql
  8667. MySQL - MySQL Functions
  8668.  mysql_affected_rows
  8669.  mysql_change_user
  8670.  mysql_client_encoding
  8671.  mysql_close
  8672.  mysql_connect
  8673.  mysql_create_db
  8674.  mysql_data_seek
  8675.  mysql_db_name
  8676.  mysql_db_query
  8677.  mysql_drop_db
  8678.  mysql_errno
  8679.  mysql_error
  8680.  mysql_escape_string
  8681.  mysql_fetch_array
  8682.  mysql_fetch_assoc
  8683.  mysql_fetch_field
  8684.  mysql_fetch_lengths
  8685.  mysql_fetch_object
  8686.  mysql_fetch_row
  8687.  mysql_field_flags
  8688.  mysql_field_len
  8689.  mysql_field_name
  8690.  mysql_field_seek
  8691.  mysql_field_table
  8692.  mysql_field_type
  8693.  mysql_free_result
  8694.  mysql_get_client_info
  8695.  mysql_get_host_info
  8696.  mysql_get_proto_info
  8697.  mysql_get_server_info
  8698.  mysql_info
  8699.  mysql_insert_id
  8700.  mysql_list_dbs
  8701.  mysql_list_fields
  8702.  mysql_list_processes
  8703.  mysql_list_tables
  8704.  mysql_num_fields
  8705.  mysql_num_rows
  8706.  mysql_pconnect
  8707.  mysql_ping
  8708.  mysql_query
  8709.  mysql_real_escape_string
  8710.  mysql_result
  8711.  mysql_select_db
  8712.  mysql_stat
  8713.  mysql_tablename
  8714.  mysql_thread_id
  8715.  mysql_unbuffered_query
  8716. mysqli - Improved MySQL Extension
  8717.  mysqli_affected_rows
  8718.  mysqli_autocommit
  8719.  mysqli_bind_param
  8720.  mysqli_bind_result
  8721.  mysqli_change_user
  8722.  mysqli_character_set_name
  8723.  mysqli_close
  8724.  mysqli_commit
  8725.  mysqli_connect
  8726.  mysqli_data_seek
  8727.  mysqli_debug
  8728.  mysqli_disable_reads_from_master
  8729.  mysqli_disable_rpl_parse
  8730.  mysqli_dump_debug_info
  8731.  mysqli_enable_reads_from_master
  8732.  mysqli_enable_rpl_parse
  8733.  mysqli_errno
  8734.  mysqli_error
  8735.  mysqli_execute
  8736.  mysqli_fetch_array
  8737.  mysqli_fetch_assoc
  8738.  mysqli_fetch_field_direct
  8739.  mysqli_fetch_field
  8740.  mysqli_fetch_fields
  8741.  mysqli_fetch_lengths
  8742.  mysqli_fetch_object
  8743.  mysqli_fetch_row
  8744.  mysqli_fetch
  8745.  mysqli_field_count
  8746.  mysqli_field_seek
  8747.  mysqli_field_tell
  8748.  mysqli_free_result
  8749.  mysqli_get_client_info
  8750.  mysqli_get_host_info
  8751.  mysqli_get_proto_info
  8752.  mysqli_get_server_info
  8753.  mysqli_get_server_version
  8754.  mysqli_info
  8755.  mysqli_init
  8756.  mysqli_insert_id
  8757.  mysqli_kill
  8758.  mysqli_master_query
  8759.  mysqli_num_fields
  8760.  mysqli_num_rows
  8761.  mysqli_options
  8762.  mysqli_param_count
  8763.  mysqli_ping
  8764.  mysqli_prepare_result
  8765.  mysqli_prepare
  8766.  mysqli_profiler
  8767.  mysqli_query
  8768.  mysqli_read_query_result
  8769.  mysqli_real_connect
  8770.  mysqli_real_escape_string
  8771.  mysqli_real_query
  8772.  mysqli_reload
  8773.  mysqli_rollback
  8774.  mysqli_rpl_parse_enabled
  8775.  mysqli_rpl_probe
  8776.  mysqli_rpl_query_type
  8777.  mysqli_select_db
  8778.  mysqli_send_long_data
  8779.  mysqli_send_query
  8780.  mysqli_slave_query
  8781.  mysqli_ssl_set
  8782.  mysqli_stat
  8783.  mysqli_stmt_affected_rows
  8784.  mysqli_stmt_close
  8785.  mysqli_stmt_errno
  8786.  mysqli_stmt_error
  8787.  mysqli_stmt_store_result
  8788.  mysqli_store_result
  8789.  mysqli_thread_id
  8790.  mysqli_thread_safe
  8791.  mysqli_use_result
  8792.  mysqli_warning_count
  8793. Msession - Mohawk Software session handler functions
  8794.  msession_connect
  8795.  msession_count
  8796.  msession_create
  8797.  msession_destroy
  8798.  msession_disconnect
  8799.  msession_find
  8800.  msession_get_array
  8801.  msession_get
  8802.  msession_getdata
  8803.  msession_inc
  8804.  msession_list
  8805.  msession_listvar
  8806.  msession_lock
  8807.  msession_plugin
  8808.  msession_randstr
  8809.  msession_set_array
  8810.  msession_set
  8811.  msession_setdata
  8812.  msession_timeout
  8813.  msession_uniq
  8814.  msession_unlock
  8815. muscat - muscat functions
  8816.  muscat_close
  8817.  muscat_get
  8818.  muscat_give
  8819.  muscat_setup_net
  8820.  muscat_setup
  8821. Network - Network Functions
  8822.  checkdnsrr
  8823.  closelog
  8824.  debugger_off
  8825.  debugger_on
  8826.  define_syslog_variables
  8827.  dns_check_record
  8828.  dns_get_mx
  8829.  dns_get_record
  8830.  fsockopen
  8831.  gethostbyaddr
  8832.  gethostbyname
  8833.  gethostbynamel
  8834.  getmxrr
  8835.  getprotobyname
  8836.  getprotobynumber
  8837.  getservbyname
  8838.  getservbyport
  8839.  ip2long
  8840.  long2ip
  8841.  openlog
  8842.  pfsockopen
  8843.  socket_get_status
  8844.  socket_set_blocking
  8845.  socket_set_timeout
  8846.  syslog
  8847. Ncurses - Ncurses terminal screen control functions
  8848.  ncurses_addch
  8849.  ncurses_addchnstr
  8850.  ncurses_addchstr
  8851.  ncurses_addnstr
  8852.  ncurses_addstr
  8853.  ncurses_assume_default_colors
  8854.  ncurses_attroff
  8855.  ncurses_attron
  8856.  ncurses_attrset
  8857.  ncurses_baudrate
  8858.  ncurses_beep
  8859.  ncurses_bkgd
  8860.  ncurses_bkgdset
  8861.  ncurses_border
  8862.  ncurses_bottom_panel
  8863.  ncurses_can_change_color
  8864.  ncurses_cbreak
  8865.  ncurses_clear
  8866.  ncurses_clrtobot
  8867.  ncurses_clrtoeol
  8868.  ncurses_color_content
  8869.  ncurses_color_set
  8870.  ncurses_curs_set
  8871.  ncurses_def_prog_mode
  8872.  ncurses_def_shell_mode
  8873.  ncurses_define_key
  8874.  ncurses_del_panel
  8875.  ncurses_delay_output
  8876.  ncurses_delch
  8877.  ncurses_deleteln
  8878.  ncurses_delwin
  8879.  ncurses_doupdate
  8880.  ncurses_echo
  8881.  ncurses_echochar
  8882.  ncurses_end
  8883.  ncurses_erase
  8884.  ncurses_erasechar
  8885.  ncurses_filter
  8886.  ncurses_flash
  8887.  ncurses_flushinp
  8888.  ncurses_getch
  8889.  ncurses_getmaxyx
  8890.  ncurses_getmouse
  8891.  ncurses_getyx
  8892.  ncurses_halfdelay
  8893.  ncurses_has_colors
  8894.  ncurses_has_ic
  8895.  ncurses_has_il
  8896.  ncurses_has_key
  8897.  ncurses_hide_panel
  8898.  ncurses_hline
  8899.  ncurses_inch
  8900.  ncurses_init_color
  8901.  ncurses_init_pair
  8902.  ncurses_init
  8903.  ncurses_insch
  8904.  ncurses_insdelln
  8905.  ncurses_insertln
  8906.  ncurses_insstr
  8907.  ncurses_instr
  8908.  ncurses_isendwin
  8909.  ncurses_keyok
  8910.  ncurses_keypad
  8911.  ncurses_killchar
  8912.  ncurses_longname
  8913.  ncurses_meta
  8914.  ncurses_mouse_trafo
  8915.  ncurses_mouseinterval
  8916.  ncurses_mousemask
  8917.  ncurses_move_panel
  8918.  ncurses_move
  8919.  ncurses_mvaddch
  8920.  ncurses_mvaddchnstr
  8921.  ncurses_mvaddchstr
  8922.  ncurses_mvaddnstr
  8923.  ncurses_mvaddstr
  8924.  ncurses_mvcur
  8925.  ncurses_mvdelch
  8926.  ncurses_mvgetch
  8927.  ncurses_mvhline
  8928.  ncurses_mvinch
  8929.  ncurses_mvvline
  8930.  ncurses_mvwaddstr
  8931.  ncurses_napms
  8932.  ncurses_new_panel
  8933.  ncurses_newpad
  8934.  ncurses_newwin
  8935.  ncurses_nl
  8936.  ncurses_nocbreak
  8937.  ncurses_noecho
  8938.  ncurses_nonl
  8939.  ncurses_noqiflush
  8940.  ncurses_noraw
  8941.  ncurses_pair_content
  8942.  ncurses_panel_above
  8943.  ncurses_panel_below
  8944.  ncurses_panel_window
  8945.  ncurses_pnoutrefresh
  8946.  ncurses_prefresh
  8947.  ncurses_putp
  8948.  ncurses_qiflush
  8949.  ncurses_raw
  8950.  ncurses_refresh
  8951.  ncurses_replace_panel
  8952.  ncurses_reset_prog_mode
  8953.  ncurses_reset_shell_mode
  8954.  ncurses_resetty
  8955.  ncurses_savetty
  8956.  ncurses_scr_dump
  8957.  ncurses_scr_init
  8958.  ncurses_scr_restore
  8959.  ncurses_scr_set
  8960.  ncurses_scrl
  8961.  ncurses_show_panel
  8962.  ncurses_slk_attr
  8963.  ncurses_slk_attroff
  8964.  ncurses_slk_attron
  8965.  ncurses_slk_attrset
  8966.  ncurses_slk_clear
  8967.  ncurses_slk_color
  8968.  ncurses_slk_init
  8969.  ncurses_slk_noutrefresh
  8970.  ncurses_slk_refresh
  8971.  ncurses_slk_restore
  8972.  ncurses_slk_set
  8973.  ncurses_slk_touch
  8974.  ncurses_standend
  8975.  ncurses_standout
  8976.  ncurses_start_color
  8977.  ncurses_termattrs
  8978.  ncurses_termname
  8979.  ncurses_timeout
  8980.  ncurses_top_panel
  8981.  ncurses_typeahead
  8982.  ncurses_ungetch
  8983.  ncurses_ungetmouse
  8984.  ncurses_update_panels
  8985.  ncurses_use_default_colors
  8986.  ncurses_use_env
  8987.  ncurses_use_extended_names
  8988.  ncurses_vidattr
  8989.  ncurses_vline
  8990.  ncurses_waddch
  8991.  ncurses_waddstr
  8992.  ncurses_wattroff
  8993.  ncurses_wattron
  8994.  ncurses_wattrset
  8995.  ncurses_wborder
  8996.  ncurses_wclear
  8997.  ncurses_wcolor_set
  8998.  ncurses_werase
  8999.  ncurses_wgetch
  9000.  ncurses_whline
  9001.  ncurses_wmouse_trafo
  9002.  ncurses_wmove
  9003.  ncurses_wnoutrefresh
  9004.  ncurses_wrefresh
  9005.  ncurses_wstandend
  9006.  ncurses_wstandout
  9007.  ncurses_wvline
  9008. Lotus Notes - Lotus Notes functions
  9009.  notes_body
  9010.  notes_copy_db
  9011.  notes_create_db
  9012.  notes_create_note
  9013.  notes_drop_db
  9014.  notes_find_note
  9015.  notes_header_info
  9016.  notes_list_msgs
  9017.  notes_mark_read
  9018.  notes_mark_unread
  9019.  notes_nav_create
  9020.  notes_search
  9021.  notes_unread
  9022.  notes_version
  9023. NSAPI - NSAPI-specific Functions
  9024.  nsapi_request_headers
  9025.  nsapi_response_headers
  9026.  nsapi_virtual
  9027. ODBC - Unified ODBC functions
  9028.  odbc_autocommit
  9029.  odbc_binmode
  9030.  odbc_close_all
  9031.  odbc_close
  9032.  odbc_columnprivileges
  9033.  odbc_columns
  9034.  odbc_commit
  9035.  odbc_connect
  9036.  odbc_cursor
  9037.  odbc_data_source
  9038.  odbc_do
  9039.  odbc_error
  9040.  odbc_errormsg
  9041.  odbc_exec
  9042.  odbc_execute
  9043.  odbc_fetch_array
  9044.  odbc_fetch_into
  9045.  odbc_fetch_object
  9046.  odbc_fetch_row
  9047.  odbc_field_len
  9048.  odbc_field_name
  9049.  odbc_field_num
  9050.  odbc_field_precision
  9051.  odbc_field_scale
  9052.  odbc_field_type
  9053.  odbc_foreignkeys
  9054.  odbc_free_result
  9055.  odbc_gettypeinfo
  9056.  odbc_longreadlen
  9057.  odbc_next_result
  9058.  odbc_num_fields
  9059.  odbc_num_rows
  9060.  odbc_pconnect
  9061.  odbc_prepare
  9062.  odbc_primarykeys
  9063.  odbc_procedurecolumns
  9064.  odbc_procedures
  9065.  odbc_result_all
  9066.  odbc_result
  9067.  odbc_rollback
  9068.  odbc_setoption
  9069.  odbc_specialcolumns
  9070.  odbc_statistics
  9071.  odbc_tableprivileges
  9072.  odbc_tables
  9073. Object Aggregation - Object Aggregation/Composition Functions
  9074.  aggregate_info
  9075.  aggregate_methods_by_list
  9076.  aggregate_methods_by_regexp
  9077.  aggregate_methods
  9078.  aggregate_properties_by_list
  9079.  aggregate_properties_by_regexp
  9080.  aggregate_properties
  9081.  aggregate
  9082.  aggregation_info
  9083.  deaggregate
  9084. OCI8 - Oracle 8 functions
  9085.  ocibindbyname
  9086.  ocicancel
  9087.  ocicloselob
  9088.  ocicollappend
  9089.  ocicollassign
  9090.  ocicollassignelem
  9091.  ocicollgetelem
  9092.  ocicollmax
  9093.  ocicollsize
  9094.  ocicolltrim
  9095.  ocicolumnisnull
  9096.  ocicolumnname
  9097.  ocicolumnprecision
  9098.  ocicolumnscale
  9099.  ocicolumnsize
  9100.  ocicolumntype
  9101.  ocicolumntyperaw
  9102.  ocicommit
  9103.  ocidefinebyname
  9104.  ocierror
  9105.  ociexecute
  9106.  ocifetch
  9107.  ocifetchinto
  9108.  ocifetchstatement
  9109.  ocifreecollection
  9110.  ocifreecursor
  9111.  ocifreedesc
  9112.  ocifreestatement
  9113.  ociinternaldebug
  9114.  ociloadlob
  9115.  ocilogoff
  9116.  ocilogon
  9117.  ocinewcollection
  9118.  ocinewcursor
  9119.  ocinewdescriptor
  9120.  ocinlogon
  9121.  ocinumcols
  9122.  ociparse
  9123.  ociplogon
  9124.  ociresult
  9125.  ocirollback
  9126.  ocirowcount
  9127.  ocisavelob
  9128.  ocisavelobfile
  9129.  ociserverversion
  9130.  ocisetprefetch
  9131.  ocistatementtype
  9132.  ociwritelobtofile
  9133.  ociwritetemporarylob
  9134. OpenSSL - OpenSSL functions
  9135.  openssl_csr_export_to_file
  9136.  openssl_csr_export
  9137.  openssl_csr_new
  9138.  openssl_csr_sign
  9139.  openssl_error_string
  9140.  openssl_free_key
  9141.  openssl_get_privatekey
  9142.  openssl_get_publickey
  9143.  openssl_open
  9144.  openssl_pkcs7_decrypt
  9145.  openssl_pkcs7_encrypt
  9146.  openssl_pkcs7_sign
  9147.  openssl_pkcs7_verify
  9148.  openssl_pkey_export_to_file
  9149.  openssl_pkey_export
  9150.  openssl_pkey_get_private
  9151.  openssl_pkey_get_public
  9152.  openssl_pkey_new
  9153.  openssl_private_decrypt
  9154.  openssl_private_encrypt
  9155.  openssl_public_decrypt
  9156.  openssl_public_encrypt
  9157.  openssl_seal
  9158.  openssl_sign
  9159.  openssl_verify
  9160.  openssl_x509_check_private_key
  9161.  openssl_x509_checkpurpose
  9162.  openssl_x509_export_to_file
  9163.  openssl_x509_export
  9164.  openssl_x509_free
  9165.  openssl_x509_parse
  9166.  openssl_x509_read
  9167. Oracle - Oracle functions
  9168.  ora_bind
  9169.  ora_close
  9170.  ora_columnname
  9171.  ora_columnsize
  9172.  ora_columntype
  9173.  ora_commit
  9174.  ora_commitoff
  9175.  ora_commiton
  9176.  ora_do
  9177.  ora_error
  9178.  ora_errorcode
  9179.  ora_exec
  9180.  ora_fetch_into
  9181.  ora_fetch
  9182.  ora_getcolumn
  9183.  ora_logoff
  9184.  ora_logon
  9185.  ora_numcols
  9186.  ora_numrows
  9187.  ora_open
  9188.  ora_parse
  9189.  ora_plogon
  9190.  ora_rollback
  9191. OvrimosSQL - Ovrimos SQL functions
  9192.  ovrimos_close
  9193.  ovrimos_commit
  9194.  ovrimos_connect
  9195.  ovrimos_cursor
  9196.  ovrimos_exec
  9197.  ovrimos_execute
  9198.  ovrimos_fetch_into
  9199.  ovrimos_fetch_row
  9200.  ovrimos_field_len
  9201.  ovrimos_field_name
  9202.  ovrimos_field_num
  9203.  ovrimos_field_type
  9204.  ovrimos_free_result
  9205.  ovrimos_longreadlen
  9206.  ovrimos_num_fields
  9207.  ovrimos_num_rows
  9208.  ovrimos_prepare
  9209.  ovrimos_result_all
  9210.  ovrimos_result
  9211.  ovrimos_rollback
  9212. Output Control - Output Control Functions
  9213.  flush
  9214.  ob_clean
  9215.  ob_end_clean
  9216.  ob_end_flush
  9217.  ob_flush
  9218.  ob_get_clean
  9219.  ob_get_contents
  9220.  ob_get_length
  9221.  ob_get_level
  9222.  ob_get_status
  9223.  ob_gzhandler
  9224.  ob_implicit_flush
  9225.  ob_start
  9226. Object overloading - Object property and method call overloading
  9227.  overload
  9228. PDF - PDF functions
  9229.  pdf_add_annotation
  9230.  pdf_add_bookmark
  9231.  pdf_add_launchlink
  9232.  pdf_add_locallink
  9233.  pdf_add_note
  9234.  pdf_add_outline
  9235.  pdf_add_pdflink
  9236.  pdf_add_thumbnail
  9237.  pdf_add_weblink
  9238.  pdf_arc
  9239.  pdf_arcn
  9240.  pdf_attach_file
  9241.  pdf_begin_page
  9242.  pdf_begin_pattern
  9243.  pdf_begin_template
  9244.  pdf_circle
  9245.  pdf_clip
  9246.  pdf_close_image
  9247.  pdf_close_pdi_page
  9248.  pdf_close_pdi
  9249.  pdf_close
  9250.  pdf_closepath_fill_stroke
  9251.  pdf_closepath_stroke
  9252.  pdf_closepath
  9253.  pdf_concat
  9254.  pdf_continue_text
  9255.  pdf_curveto
  9256.  pdf_delete
  9257.  pdf_end_page
  9258.  pdf_end_pattern
  9259.  pdf_end_template
  9260.  pdf_endpath
  9261.  pdf_fill_stroke
  9262.  pdf_fill
  9263.  pdf_findfont
  9264.  pdf_get_buffer
  9265.  pdf_get_font
  9266.  pdf_get_fontname
  9267.  pdf_get_fontsize
  9268.  pdf_get_image_height
  9269.  pdf_get_image_width
  9270.  pdf_get_majorversion
  9271.  pdf_get_minorversion
  9272.  pdf_get_parameter
  9273.  pdf_get_pdi_parameter
  9274.  pdf_get_pdi_value
  9275.  pdf_get_value
  9276.  pdf_initgraphics
  9277.  pdf_lineto
  9278.  pdf_makespotcolor
  9279.  pdf_moveto
  9280.  pdf_new
  9281.  pdf_open_CCITT
  9282.  pdf_open_file
  9283.  pdf_open_gif
  9284.  pdf_open_image_file
  9285.  pdf_open_image
  9286.  pdf_open_jpeg
  9287.  pdf_open_memory_image
  9288.  pdf_open_pdi_page
  9289.  pdf_open_pdi
  9290.  pdf_open_png
  9291.  pdf_open_tiff
  9292.  pdf_open
  9293.  pdf_place_image
  9294.  pdf_place_pdi_page
  9295.  pdf_rect
  9296.  pdf_restore
  9297.  pdf_rotate
  9298.  pdf_save
  9299.  pdf_scale
  9300.  pdf_set_border_color
  9301.  pdf_set_border_dash
  9302.  pdf_set_border_style
  9303.  pdf_set_char_spacing
  9304.  pdf_set_duration
  9305.  pdf_set_font
  9306.  pdf_set_horiz_scaling
  9307.  pdf_set_info_author
  9308.  pdf_set_info_creator
  9309.  pdf_set_info_keywords
  9310.  pdf_set_info_subject
  9311.  pdf_set_info_title
  9312.  pdf_set_info
  9313.  pdf_set_leading
  9314.  pdf_set_parameter
  9315.  pdf_set_text_matrix
  9316.  pdf_set_text_pos
  9317.  pdf_set_text_rendering
  9318.  pdf_set_text_rise
  9319.  pdf_set_value
  9320.  pdf_set_word_spacing
  9321.  pdf_setcolor
  9322.  pdf_setdash
  9323.  pdf_setflat
  9324.  pdf_setfont
  9325.  pdf_setgray_fill
  9326.  pdf_setgray_stroke
  9327.  pdf_setgray
  9328.  pdf_setlinecap
  9329.  pdf_setlinejoin
  9330.  pdf_setlinewidth
  9331.  pdf_setmatrix
  9332.  pdf_setmiterlimit
  9333.  pdf_setpolydash
  9334.  pdf_setrgbcolor_fill
  9335.  pdf_setrgbcolor_stroke
  9336.  pdf_setrgbcolor
  9337.  pdf_show_boxed
  9338.  pdf_show_xy
  9339.  pdf_show
  9340.  pdf_skew
  9341.  pdf_stringwidth
  9342.  pdf_stroke
  9343.  pdf_translate
  9344. Verisign Payflow Pro - Verisign Payflow Pro functions
  9345.  pfpro_cleanup
  9346.  pfpro_init
  9347.  pfpro_process_raw
  9348.  pfpro_process
  9349.  pfpro_version
  9350. PHP Options/Info - PHP Options&Information
  9351.  assert_options
  9352.  assert
  9353.  dl
  9354.  extension_loaded
  9355.  get_cfg_var
  9356.  get_current_user
  9357.  get_defined_constants
  9358.  get_extension_funcs
  9359.  get_include_path
  9360.  get_included_files
  9361.  get_loaded_extensions
  9362.  get_magic_quotes_gpc
  9363.  get_magic_quotes_runtime
  9364.  get_required_files
  9365.  getenv
  9366.  getlastmod
  9367.  getmygid
  9368.  getmyinode
  9369.  getmypid
  9370.  getmyuid
  9371.  getopt
  9372.  getrusage
  9373.  ini_alter
  9374.  ini_get_all
  9375.  ini_get
  9376.  ini_restore
  9377.  ini_set
  9378.  main
  9379.  memory_get_usage
  9380.  php_ini_scanned_files
  9381.  php_logo_guid
  9382.  php_sapi_name
  9383.  php_uname
  9384.  phpcredits
  9385.  phpinfo
  9386.  phpversion
  9387.  putenv
  9388.  restore_include_path
  9389.  set_include_path
  9390.  set_magic_quotes_runtime
  9391.  set_time_limit
  9392.  version_compare
  9393.  zend_logo_guid
  9394.  zend_version
  9395. POSIX - POSIX functions
  9396.  posix_ctermid
  9397.  posix_get_last_error
  9398.  posix_getcwd
  9399.  posix_getegid
  9400.  posix_geteuid
  9401.  posix_getgid
  9402.  posix_getgrgid
  9403.  posix_getgrnam
  9404.  posix_getgroups
  9405.  posix_getlogin
  9406.  posix_getpgid
  9407.  posix_getpgrp
  9408.  posix_getpid
  9409.  posix_getppid
  9410.  posix_getpwnam
  9411.  posix_getpwuid
  9412.  posix_getrlimit
  9413.  posix_getsid
  9414.  posix_getuid
  9415.  posix_isatty
  9416.  posix_kill
  9417.  posix_mkfifo
  9418.  posix_setegid
  9419.  posix_seteuid
  9420.  posix_setgid
  9421.  posix_setpgid
  9422.  posix_setsid
  9423.  posix_setuid
  9424.  posix_strerror
  9425.  posix_times
  9426.  posix_ttyname
  9427.  posix_uname
  9428. PostgreSQL - PostgreSQL functions
  9429.  pg_affected_rows
  9430.  pg_cancel_query
  9431.  pg_client_encoding
  9432.  pg_close
  9433.  pg_connect
  9434.  pg_connection_busy
  9435.  pg_connection_reset
  9436.  pg_connection_status
  9437.  pg_convert
  9438.  pg_copy_from
  9439.  pg_copy_to
  9440.  pg_dbname
  9441.  pg_delete
  9442.  pg_end_copy
  9443.  pg_escape_bytea
  9444.  pg_escape_string
  9445.  pg_fetch_all
  9446.  pg_fetch_array
  9447.  pg_fetch_assoc
  9448.  pg_fetch_object
  9449.  pg_fetch_result
  9450.  pg_fetch_row
  9451.  pg_field_is_null
  9452.  pg_field_name
  9453.  pg_field_num
  9454.  pg_field_prtlen
  9455.  pg_field_size
  9456.  pg_field_type
  9457.  pg_free_result
  9458.  pg_get_notify
  9459.  pg_get_pid
  9460.  pg_get_result
  9461.  pg_host
  9462.  pg_insert
  9463.  pg_last_error
  9464.  pg_last_notice
  9465.  pg_last_oid
  9466.  pg_lo_close
  9467.  pg_lo_create
  9468.  pg_lo_export
  9469.  pg_lo_import
  9470.  pg_lo_open
  9471.  pg_lo_read_all
  9472.  pg_lo_read
  9473.  pg_lo_seek
  9474.  pg_lo_tell
  9475.  pg_lo_unlink
  9476.  pg_lo_write
  9477.  pg_meta_data
  9478.  pg_num_fields
  9479.  pg_num_rows
  9480.  pg_options
  9481.  pg_pconnect
  9482.  pg_ping
  9483.  pg_port
  9484.  pg_put_line
  9485.  pg_query
  9486.  pg_result_error
  9487.  pg_result_seek
  9488.  pg_result_status
  9489.  pg_select
  9490.  pg_send_query
  9491.  pg_set_client_encoding
  9492.  pg_trace
  9493.  pg_tty
  9494.  pg_unescape_bytea
  9495.  pg_untrace
  9496.  pg_update
  9497. PCNTL - Process Control Functions
  9498.  pcntl_exec
  9499.  pcntl_fork
  9500.  pcntl_signal
  9501.  pcntl_waitpid
  9502.  pcntl_wexitstatus
  9503.  pcntl_wifexited
  9504.  pcntl_wifsignaled
  9505.  pcntl_wifstopped
  9506.  pcntl_wstopsig
  9507.  pcntl_wtermsig
  9508. Program Execution - Program Execution functions
  9509.  escapeshellarg
  9510.  escapeshellcmd
  9511.  exec
  9512.  passthru
  9513.  proc_close
  9514.  proc_get_status
  9515.  proc_nice
  9516.  proc_open
  9517.  proc_terminate
  9518.  shell_exec
  9519.  system
  9520. Printer - Printer functions
  9521.  printer_abort
  9522.  printer_close
  9523.  printer_create_brush
  9524.  printer_create_dc
  9525.  printer_create_font
  9526.  printer_create_pen
  9527.  printer_delete_brush
  9528.  printer_delete_dc
  9529.  printer_delete_font
  9530.  printer_delete_pen
  9531.  printer_draw_bmp
  9532.  printer_draw_chord
  9533.  printer_draw_elipse
  9534.  printer_draw_line
  9535.  printer_draw_pie
  9536.  printer_draw_rectangle
  9537.  printer_draw_roundrect
  9538.  printer_draw_text
  9539.  printer_end_doc
  9540.  printer_end_page
  9541.  printer_get_option
  9542.  printer_list
  9543.  printer_logical_fontheight
  9544.  printer_open
  9545.  printer_select_brush
  9546.  printer_select_font
  9547.  printer_select_pen
  9548.  printer_set_option
  9549.  printer_start_doc
  9550.  printer_start_page
  9551.  printer_write
  9552. Pspell - Pspell Functions
  9553.  pspell_add_to_personal
  9554.  pspell_add_to_session
  9555.  pspell_check
  9556.  pspell_clear_session
  9557.  pspell_config_create
  9558.  pspell_config_ignore
  9559.  pspell_config_mode
  9560.  pspell_config_personal
  9561.  pspell_config_repl
  9562.  pspell_config_runtogether
  9563.  pspell_config_save_repl
  9564.  pspell_new_config
  9565.  pspell_new_personal
  9566.  pspell_new
  9567.  pspell_save_wordlist
  9568.  pspell_store_replacement
  9569.  pspell_suggest
  9570. Readline - GNU Readline
  9571.  readline_add_history
  9572.  readline_clear_history
  9573.  readline_completion_function
  9574.  readline_info
  9575.  readline_list_history
  9576.  readline_read_history
  9577.  readline_write_history
  9578.  readline
  9579. Recode - GNU Recode functions
  9580.  recode_file
  9581.  recode_string
  9582.  recode
  9583. PCRE - Regular Expression Functions (Perl-Compatible)
  9584.  Pattern Modifiers
  9585.  Pattern Syntax
  9586.  preg_grep
  9587.  preg_match_all
  9588.  preg_match
  9589.  preg_quote
  9590.  preg_replace_callback
  9591.  preg_replace
  9592.  preg_split
  9593. qtdom - qtdom functions
  9594.  qdom_error
  9595.  qdom_tree
  9596. Regexps - Regular Expression Functions (POSIX Extended)
  9597.  ereg_replace
  9598.  ereg
  9599.  eregi_replace
  9600.  eregi
  9601.  split
  9602.  spliti
  9603.  sql_regcase
  9604. Semaphore - Semaphore, Shared Memory and IPC Functions
  9605.  ftok
  9606.  msg_get_queue
  9607.  msg_receive
  9608.  msg_remove_queue
  9609.  msg_send
  9610.  msg_set_queue
  9611.  msg_stat_queue
  9612.  sem_acquire
  9613.  sem_get
  9614.  sem_release
  9615.  sem_remove
  9616.  shm_attach
  9617.  shm_detach
  9618.  shm_get_var
  9619.  shm_put_var
  9620.  shm_remove_var
  9621.  shm_remove
  9622. SESAM - SESAM database functions
  9623.  sesam_affected_rows
  9624.  sesam_commit
  9625.  sesam_connect
  9626.  sesam_diagnostic
  9627.  sesam_disconnect
  9628.  sesam_errormsg
  9629.  sesam_execimm
  9630.  sesam_fetch_array
  9631.  sesam_fetch_result
  9632.  sesam_fetch_row
  9633.  sesam_field_array
  9634.  sesam_field_name
  9635.  sesam_free_result
  9636.  sesam_num_fields
  9637.  sesam_query
  9638.  sesam_rollback
  9639.  sesam_seek_row
  9640.  sesam_settransaction
  9641. Sessions - Session handling functions
  9642.  session_cache_expire
  9643.  session_cache_limiter
  9644.  session_decode
  9645.  session_destroy
  9646.  session_encode
  9647.  session_get_cookie_params
  9648.  session_id
  9649.  session_is_registered
  9650.  session_module_name
  9651.  session_name
  9652.  session_regenerate_id
  9653.  session_register
  9654.  session_save_path
  9655.  session_set_cookie_params
  9656.  session_set_save_handler
  9657.  session_start
  9658.  session_unregister
  9659.  session_unset
  9660.  session_write_close
  9661. shmop - Shared Memory Functions
  9662.  shmop_close
  9663.  shmop_delete
  9664.  shmop_open
  9665.  shmop_read
  9666.  shmop_size
  9667.  shmop_write
  9668. SQLite - SQLite
  9669.  sqlite_array_query
  9670.  sqlite_busy_timeout
  9671.  sqlite_changes
  9672.  sqlite_close
  9673.  sqlite_column
  9674.  sqlite_create_aggregate
  9675.  sqlite_create_function
  9676.  sqlite_current
  9677.  sqlite_error_string
  9678.  sqlite_escape_string
  9679.  sqlite_fetch_array
  9680.  sqlite_fetch_single
  9681.  sqlite_fetch_string
  9682.  sqlite_field_name
  9683.  sqlite_has_more
  9684.  sqlite_last_error
  9685.  sqlite_last_insert_rowid
  9686.  sqlite_libencoding
  9687.  sqlite_libversion
  9688.  sqlite_next
  9689.  sqlite_num_fields
  9690.  sqlite_num_rows
  9691.  sqlite_open
  9692.  sqlite_popen
  9693.  sqlite_query
  9694.  sqlite_rewind
  9695.  sqlite_seek
  9696.  sqlite_udf_decode_binary
  9697.  sqlite_udf_encode_binary
  9698.  sqlite_unbuffered_query
  9699. SWF - Shockwave Flash functions
  9700.  swf_actiongeturl
  9701.  swf_actiongotoframe
  9702.  swf_actiongotolabel
  9703.  swf_actionnextframe
  9704.  swf_actionplay
  9705.  swf_actionprevframe
  9706.  swf_actionsettarget
  9707.  swf_actionstop
  9708.  swf_actiontogglequality
  9709.  swf_actionwaitforframe
  9710.  swf_addbuttonrecord
  9711.  swf_addcolor
  9712.  swf_closefile
  9713.  swf_definebitmap
  9714.  swf_definefont
  9715.  swf_defineline
  9716.  swf_definepoly
  9717.  swf_definerect
  9718.  swf_definetext
  9719.  swf_endbutton
  9720.  swf_enddoaction
  9721.  swf_endshape
  9722.  swf_endsymbol
  9723.  swf_fontsize
  9724.  swf_fontslant
  9725.  swf_fonttracking
  9726.  swf_getbitmapinfo
  9727.  swf_getfontinfo
  9728.  swf_getframe
  9729.  swf_labelframe
  9730.  swf_lookat
  9731.  swf_modifyobject
  9732.  swf_mulcolor
  9733.  swf_nextid
  9734.  swf_oncondition
  9735.  swf_openfile
  9736.  swf_ortho2
  9737.  swf_ortho
  9738.  swf_perspective
  9739.  swf_placeobject
  9740.  swf_polarview
  9741.  swf_popmatrix
  9742.  swf_posround
  9743.  swf_pushmatrix
  9744.  swf_removeobject
  9745.  swf_rotate
  9746.  swf_scale
  9747.  swf_setfont
  9748.  swf_setframe
  9749.  swf_shapearc
  9750.  swf_shapecurveto3
  9751.  swf_shapecurveto
  9752.  swf_shapefillbitmapclip
  9753.  swf_shapefillbitmaptile
  9754.  swf_shapefilloff
  9755.  swf_shapefillsolid
  9756.  swf_shapelinesolid
  9757.  swf_shapelineto
  9758.  swf_shapemoveto
  9759.  swf_showframe
  9760.  swf_startbutton
  9761.  swf_startdoaction
  9762.  swf_startshape
  9763.  swf_startsymbol
  9764.  swf_textwidth
  9765.  swf_translate
  9766.  swf_viewport
  9767. SNMP - SNMP functions
  9768.  snmp_get_quick_print
  9769.  snmp_set_quick_print
  9770.  snmpget
  9771.  snmprealwalk
  9772.  snmpset
  9773.  snmpwalk
  9774.  snmpwalkoid
  9775. Sockets - Socket functions
  9776.  socket_accept
  9777.  socket_bind
  9778.  socket_clear_error
  9779.  socket_close
  9780.  socket_connect
  9781.  socket_create_listen
  9782.  socket_create_pair
  9783.  socket_create
  9784.  socket_get_option
  9785.  socket_getpeername
  9786.  socket_getsockname
  9787.  socket_iovec_add
  9788.  socket_iovec_alloc
  9789.  socket_iovec_delete
  9790.  socket_iovec_fetch
  9791.  socket_iovec_free
  9792.  socket_iovec_set
  9793.  socket_last_error
  9794.  socket_listen
  9795.  socket_read
  9796.  socket_readv
  9797.  socket_recv
  9798.  socket_recvfrom
  9799.  socket_recvmsg
  9800.  socket_select
  9801.  socket_send
  9802.  socket_sendmsg
  9803.  socket_sendto
  9804.  socket_set_block
  9805.  socket_set_nonblock
  9806.  socket_set_option
  9807.  socket_shutdown
  9808.  socket_strerror
  9809.  socket_write
  9810.  socket_writev
  9811. Streams - Stream functions
  9812.  stream_context_create
  9813.  stream_context_get_options
  9814.  stream_context_set_option
  9815.  stream_context_set_params
  9816.  stream_copy_to_stream
  9817.  stream_filter_append
  9818.  stream_filter_prepend
  9819.  stream_filter_register
  9820.  stream_get_filters
  9821.  stream_get_line
  9822.  stream_get_meta_data
  9823.  stream_get_transports
  9824.  stream_get_wrappers
  9825.  stream_register_wrapper
  9826.  stream_select
  9827.  stream_set_blocking
  9828.  stream_set_timeout
  9829.  stream_set_write_buffer
  9830.  stream_socket_accept
  9831.  stream_socket_client
  9832.  stream_socket_get_name
  9833.  stream_socket_server
  9834.  stream_wrapper_register
  9835. Strings - String functions
  9836.  addcslashes
  9837.  addslashes
  9838.  bin2hex
  9839.  chop
  9840.  chr
  9841.  chunk_split
  9842.  convert_cyr_string
  9843.  count_chars
  9844.  crc32
  9845.  crypt
  9846.  echo
  9847.  explode
  9848.  fprintf
  9849.  get_html_translation_table
  9850.  hebrev
  9851.  hebrevc
  9852.  html_entity_decode
  9853.  htmlentities
  9854.  htmlspecialchars
  9855.  implode
  9856.  join
  9857.  levenshtein
  9858.  localeconv
  9859.  ltrim
  9860.  md5_file
  9861.  md5
  9862.  metaphone
  9863.  money_format
  9864.  nl_langinfo
  9865.  nl2br
  9866.  number_format
  9867.  ord
  9868.  parse_str
  9869.  print
  9870.  printf
  9871.  quoted_printable_decode
  9872.  quotemeta
  9873.  rtrim
  9874.  setlocale
  9875.  sha1_file
  9876.  sha1
  9877.  similar_text
  9878.  soundex
  9879.  sprintf
  9880.  sscanf
  9881.  str_ireplace
  9882.  str_pad
  9883.  str_repeat
  9884.  str_replace
  9885.  str_rot13
  9886.  str_shuffle
  9887.  str_split
  9888.  str_word_count
  9889.  strcasecmp
  9890.  strchr
  9891.  strcmp
  9892.  strcoll
  9893.  strcspn
  9894.  strip_tags
  9895.  stripcslashes
  9896.  stripos
  9897.  stripslashes
  9898.  stristr
  9899.  strlen
  9900.  strnatcasecmp
  9901.  strnatcmp
  9902.  strncasecmp
  9903.  strncmp
  9904.  strpos
  9905.  strrchr
  9906.  strrev
  9907.  strripos
  9908.  strrpos
  9909.  strspn
  9910.  strstr
  9911.  strtok
  9912.  strtolower
  9913.  strtoupper
  9914.  strtr
  9915.  substr_compare
  9916.  substr_count
  9917.  substr_replace
  9918.  substr
  9919.  trim
  9920.  ucfirst
  9921.  ucwords
  9922.  vprintf
  9923.  vsprintf
  9924.  wordwrap
  9925. Sybase - Sybase functions
  9926.  sybase_affected_rows
  9927.  sybase_close
  9928.  sybase_connect
  9929.  sybase_data_seek
  9930.  sybase_deadlock_retry_count
  9931.  sybase_fetch_array
  9932.  sybase_fetch_assoc
  9933.  sybase_fetch_field
  9934.  sybase_fetch_object
  9935.  sybase_fetch_row
  9936.  sybase_field_seek
  9937.  sybase_free_result
  9938.  sybase_get_last_message
  9939.  sybase_min_client_severity
  9940.  sybase_min_error_severity
  9941.  sybase_min_message_severity
  9942.  sybase_min_server_severity
  9943.  sybase_num_fields
  9944.  sybase_num_rows
  9945.  sybase_pconnect
  9946.  sybase_query
  9947.  sybase_result
  9948.  sybase_select_db
  9949.  sybase_set_message_handler
  9950.  sybase_unbuffered_query
  9951. tidy - tidy Functions
  9952.  tidy_access_count
  9953.  tidy_clean_repair
  9954.  tidy_config_count
  9955.  tidy_diagnose
  9956.  tidy_error_count
  9957.  tidy_get_body
  9958.  tidy_get_config
  9959.  tidy_get_error_buffer
  9960.  tidy_get_head
  9961.  tidy_get_html_ver
  9962.  tidy_get_html
  9963.  tidy_get_output
  9964.  tidy_get_release
  9965.  tidy_get_root
  9966.  tidy_get_status
  9967.  tidy_getopt
  9968.  tidy_is_xhtml
  9969.  tidy_load_config
  9970.  tidy_parse_file
  9971.  tidy_parse_string
  9972.  tidy_repair_file
  9973.  tidy_repair_string
  9974.  tidy_reset_config
  9975.  tidy_save_config
  9976.  tidy_set_encoding
  9977.  tidy_setopt
  9978.  tidy_warning_count
  9979. Tokenizer - Tokenizer functions
  9980.  token_get_all
  9981.  token_name
  9982. URLs - URL Functions
  9983.  base64_decode
  9984.  base64_encode
  9985.  get_meta_tags
  9986.  http_build_query
  9987.  parse_url
  9988.  rawurldecode
  9989.  rawurlencode
  9990.  urldecode
  9991.  urlencode
  9992. Variables - Variable Functions
  9993.  doubleval
  9994.  empty
  9995.  floatval
  9996.  get_defined_vars
  9997.  get_resource_type
  9998.  gettype
  9999.  import_request_variables
  10000.  intval
  10001.  is_array
  10002.  is_bool
  10003.  is_callable
  10004.  is_double
  10005.  is_float
  10006.  is_int
  10007.  is_integer
  10008.  is_long
  10009.  is_null
  10010.  is_numeric
  10011.  is_object
  10012.  is_real
  10013.  is_resource
  10014.  is_scalar
  10015.  is_string
  10016.  isset
  10017.  print_r
  10018.  serialize
  10019.  settype
  10020.  strval
  10021.  unserialize
  10022.  unset
  10023.  var_dump
  10024.  var_export
  10025. vpopmail - vpopmail functions
  10026.  vpopmail_add_alias_domain_ex
  10027.  vpopmail_add_alias_domain
  10028.  vpopmail_add_domain_ex
  10029.  vpopmail_add_domain
  10030.  vpopmail_add_user
  10031.  vpopmail_alias_add
  10032.  vpopmail_alias_del_domain
  10033.  vpopmail_alias_del
  10034.  vpopmail_alias_get_all
  10035.  vpopmail_alias_get
  10036.  vpopmail_auth_user
  10037.  vpopmail_del_domain_ex
  10038.  vpopmail_del_domain
  10039.  vpopmail_del_user
  10040.  vpopmail_error
  10041.  vpopmail_passwd
  10042.  vpopmail_set_user_quota
  10043. W32api - W32api functions
  10044.  w32api_deftype
  10045.  w32api_init_dtype
  10046.  w32api_invoke_function
  10047.  w32api_register_function
  10048.  w32api_set_call_method
  10049. WDDX - WDDX Functions
  10050.  wddx_add_vars
  10051.  wddx_deserialize
  10052.  wddx_packet_end
  10053.  wddx_packet_start
  10054.  wddx_serialize_value
  10055.  wddx_serialize_vars
  10056. XML - XML parser functions
  10057.  utf8_decode
  10058.  utf8_encode
  10059.  xml_error_string
  10060.  xml_get_current_byte_index
  10061.  xml_get_current_column_number
  10062.  xml_get_current_line_number
  10063.  xml_get_error_code
  10064.  xml_parse_into_struct
  10065.  xml_parse
  10066.  xml_parser_create_ns
  10067.  xml_parser_create
  10068.  xml_parser_free
  10069.  xml_parser_get_option
  10070.  xml_parser_set_option
  10071.  xml_set_character_data_handler
  10072.  xml_set_default_handler
  10073.  xml_set_element_handler
  10074.  xml_set_end_namespace_decl_handler
  10075.  xml_set_external_entity_ref_handler
  10076.  xml_set_notation_decl_handler
  10077.  xml_set_object
  10078.  xml_set_processing_instruction_handler
  10079.  xml_set_start_namespace_decl_handler
  10080.  xml_set_unparsed_entity_decl_handler
  10081. XML-RPC - XML-RPC functions
  10082.  xmlrpc_decode_request
  10083.  xmlrpc_decode
  10084.  xmlrpc_encode_request
  10085.  xmlrpc_encode
  10086.  xmlrpc_get_type
  10087.  xmlrpc_parse_method_descriptions
  10088.  xmlrpc_server_add_introspection_data
  10089.  xmlrpc_server_call_method
  10090.  xmlrpc_server_create
  10091.  xmlrpc_server_destroy
  10092.  xmlrpc_server_register_introspection_callback
  10093.  xmlrpc_server_register_method
  10094.  xmlrpc_set_type
  10095. XSLT - XSLT functions
  10096.  xslt_create
  10097.  xslt_errno
  10098.  xslt_error
  10099.  xslt_free
  10100.  xslt_process
  10101.  xslt_set_base
  10102.  xslt_set_encoding
  10103.  xslt_set_error_handler
  10104.  xslt_set_log
  10105.  xslt_set_sax_handler
  10106.  xslt_set_sax_handlers
  10107.  xslt_set_scheme_handler
  10108.  xslt_set_scheme_handlers
  10109. YAZ - YAZ functions
  10110.  yaz_addinfo
  10111.  yaz_ccl_conf
  10112.  yaz_ccl_parse
  10113.  yaz_close
  10114.  yaz_connect
  10115.  yaz_database
  10116.  yaz_element
  10117.  yaz_errno
  10118.  yaz_error
  10119.  yaz_get_option
  10120.  yaz_hits
  10121.  yaz_itemorder
  10122.  yaz_present
  10123.  yaz_range
  10124.  yaz_record
  10125.  yaz_scan_result
  10126.  yaz_scan
  10127.  yaz_schema
  10128.  yaz_search
  10129.  yaz_set_option
  10130.  yaz_sort
  10131.  yaz_syntax
  10132.  yaz_wait
  10133. YP/NIS - YP/NIS Functions
  10134.  yp_all
  10135.  yp_cat
  10136.  yp_err_string
  10137.  yp_errno
  10138.  yp_first
  10139.  yp_get_default_domain
  10140.  yp_master
  10141.  yp_match
  10142.  yp_next
  10143.  yp_order
  10144. Zip - Zip File Functions (Read Only Access)
  10145.  zip_close
  10146.  zip_entry_close
  10147.  zip_entry_compressedsize
  10148.  zip_entry_compressionmethod
  10149.  zip_entry_filesize
  10150.  zip_entry_name
  10151.  zip_entry_open
  10152.  zip_entry_read
  10153.  zip_open
  10154.  zip_read
  10155. Zlib - Zlib Compression Functions
  10156.  gzclose
  10157.  gzcompress
  10158.  gzdeflate
  10159.  gzencode
  10160.  gzeof
  10161.  gzfile
  10162.  gzgetc
  10163.  gzgets
  10164.  gzgetss
  10165.  gzinflate
  10166.  gzopen
  10167.  gzpassthru
  10168.  gzputs
  10169.  gzread
  10170.  gzrewind
  10171.  gzseek
  10172.  gztell
  10173.  gzuncompress
  10174.  gzwrite
  10175.  readgzfile
  10176.  zlib_get_coding_type
  10177. ;
  10178. ;
  10179. ; -----------------------------------------------------------------------------
  10180. ; KeyWords
  10181. ; -----------------------------------------------------------------------------
  10182. [KeyWords]
  10183. ; predefined magical constants
  10184. __LINE__
  10185. __FILE__
  10186. __FUNCTION__
  10187. __CLASS__
  10188. ; core predefined constants
  10189. PHP_VERSION
  10190. PHP_OS
  10191. DEFAULT_INCLUDE_PATH
  10192. PEAR_INSTALL_DIR
  10193. PEAR_EXTENSION_DIR
  10194. PHP_EXTENSION_DIR
  10195. PHP_BINDIR
  10196. PHP_LIBDIR
  10197. PHP_DATADIR
  10198. PHP_SYSCONFDIR
  10199. PHP_LOCALSTATEDIR
  10200. PHP_CONFIG_FILE_PATH
  10201. PHP_OUTPUT_HANDLER_START
  10202. PHP_OUTPUT_HANDLER_CONT
  10203. PHP_OUTPUT_HANDLER_END
  10204. E_ERROR
  10205. E_WARNING
  10206. E_PARSE
  10207. E_NOTICE
  10208. E_CORE_ERROR
  10209. E_CORE_WARNING
  10210. E_COMPILE_ERROR
  10211. E_COMPILE_WARNING
  10212. E_USER_ERROR
  10213. E_USER_WARNING
  10214. E_USER_NOTICE
  10215. E_ALL
  10216. ; standard predefined constants
  10217. EXTR_OVERWRITE
  10218. EXTR_SKIP
  10219. EXTR_PREFIX_SAME
  10220. EXTR_PREFIX_ALL
  10221. EXTR_PREFIX_INVALID
  10222. EXTR_PREFIX_IF_EXISTS
  10223. EXTR_IF_EXISTS
  10224. SORT_ASC
  10225. SORT_DESC
  10226. SORT_REGULAR
  10227. SORT_NUMERIC
  10228. SORT_STRING
  10229. CASE_LOWER
  10230. CASE_UPPER
  10231. COUNT_NORMAL
  10232. COUNT_RECURSIVE
  10233. ASSERT_ACTIVE
  10234. ASSERT_CALLBACK
  10235. ASSERT_BAIL
  10236. ASSERT_WARNING
  10237. ASSERT_QUIET_EVAL
  10238. CONNECTION_ABORTED
  10239. CONNECTION_NORMAL
  10240. CONNECTION_TIMEOUT
  10241. INI_USER
  10242. INI_PERDIR
  10243. INI_SYSTEM
  10244. INI_ALL
  10245. M_E
  10246. M_LOG2E
  10247. M_LOG10E
  10248. M_LN2
  10249. M_LN10
  10250. M_PI
  10251. M_PI_2
  10252. M_PI_4
  10253. M_1_PI
  10254. M_2_PI
  10255. M_2_SQRTPI
  10256. M_SQRT2
  10257. M_SQRT1_2
  10258. CRYPT_SALT_LENGTH
  10259. CRYPT_STD_DES
  10260. CRYPT_EXT_DES
  10261. CRYPT_MD5
  10262. CRYPT_BLOWFISH
  10263. DIRECTORY_SEPARATOR
  10264. SEEK_SET
  10265. SEEK_CUR
  10266. SEEK_END
  10267. LOCK_SH
  10268. LOCK_EX
  10269. LOCK_UN
  10270. LOCK_NB
  10271. HTML_SPECIALCHARS
  10272. HTML_ENTITIES
  10273. ENT_COMPAT
  10274. ENT_QUOTES
  10275. ENT_NOQUOTES
  10276. INFO_GENERAL
  10277. INFO_CREDITS
  10278. INFO_CONFIGURATION
  10279. INFO_MODULES
  10280. INFO_ENVIRONMENT
  10281. INFO_VARIABLES
  10282. INFO_LICENSE
  10283. INFO_ALL
  10284. CREDITS_GROUP
  10285. CREDITS_GENERAL
  10286. CREDITS_SAPI
  10287. CREDITS_MODULES
  10288. CREDITS_DOCS
  10289. CREDITS_FULLPAGE
  10290. CREDITS_QA
  10291. CREDITS_ALL
  10292. STR_PAD_LEFT
  10293. STR_PAD_RIGHT
  10294. STR_PAD_BOTH
  10295. PATHINFO_DIRNAME
  10296. PATHINFO_BASENAME
  10297. PATHINFO_EXTENSION
  10298. CHAR_MAX
  10299. LC_CTYPE
  10300. LC_NUMERIC
  10301. LC_TIME
  10302. LC_COLLATE
  10303. LC_MONETARY
  10304. LC_ALL
  10305. LC_MESSAGES
  10306. ABDAY_1
  10307. ABDAY_2
  10308. ABDAY_3
  10309. ABDAY_4
  10310. ABDAY_5
  10311. ABDAY_6
  10312. ABDAY_7
  10313. DAY_1
  10314. DAY_2
  10315. DAY_3
  10316. DAY_4
  10317. DAY_5
  10318. DAY_6
  10319. DAY_7
  10320. ABMON_1
  10321. ABMON_2
  10322. ABMON_3
  10323. ABMON_4
  10324. ABMON_5
  10325. ABMON_6
  10326. ABMON_7
  10327. ABMON_8
  10328. ABMON_9
  10329. ABMON_10
  10330. ABMON_11
  10331. ABMON_12
  10332. MON_1
  10333. MON_2
  10334. MON_3
  10335. MON_4
  10336. MON_5
  10337. MON_6
  10338. MON_7
  10339. MON_8
  10340. MON_9
  10341. MON_10
  10342. MON_11
  10343. MON_12
  10344. AM_STR
  10345. PM_STR
  10346. D_T_FMT
  10347. D_FMT
  10348. T_FMT
  10349. T_FMT_AMPM
  10350. ERA
  10351. ERA_YEAR
  10352. ERA_D_T_FMT
  10353. ERA_D_FMT
  10354. ERA_T_FMT
  10355. ALT_DIGITS
  10356. INT_CURR_SYMBOL
  10357. CURRENCY_SYMBOL
  10358. CRNCYSTR
  10359. MON_DECIMAL_POINT
  10360. MON_THOUSANDS_SEP
  10361. MON_GROUPING
  10362. POSITIVE_SIGN
  10363. NEGATIVE_SIGN
  10364. INT_FRAC_DIGITS
  10365. FRAC_DIGITS
  10366. P_CS_PRECEDES
  10367. P_SEP_BY_SPACE
  10368. N_CS_PRECEDES
  10369. N_SEP_BY_SPACE
  10370. P_SIGN_POSN
  10371. N_SIGN_POSN
  10372. DECIMAL_POINT
  10373. RADIXCHAR
  10374. THOUSANDS_SEP
  10375. THOUSEP
  10376. GROUPING
  10377. YESEXPR
  10378. NOEXPR
  10379. YESSTR
  10380. NOSTR
  10381. CODESET
  10382. LOG_EMERG
  10383. LOG_ALERT
  10384. LOG_CRIT
  10385. LOG_ERR
  10386. LOG_WARNING
  10387. LOG_NOTICE
  10388. LOG_INFO
  10389. LOG_DEBUG
  10390. LOG_KERN
  10391. LOG_USER
  10392. LOG_MAIL
  10393. LOG_DAEMON
  10394. LOG_AUTH
  10395. LOG_SYSLOG
  10396. LOG_LPR
  10397. LOG_NEWS
  10398. LOG_UUCP
  10399. LOG_CRON
  10400. LOG_AUTHPRIV
  10401. LOG_LOCAL0
  10402. LOG_LOCAL1
  10403. LOG_LOCAL2
  10404. LOG_LOCAL3
  10405. LOG_LOCAL4
  10406. LOG_LOCAL5
  10407. LOG_LOCAL6
  10408. LOG_LOCAL7
  10409. LOG_PID
  10410. LOG_CONS
  10411. LOG_ODELAY
  10412. LOG_NDELAY
  10413. LOG_NOWAIT
  10414. LOG_PERROR
  10415. ; predefined variables
  10416. $GLOBALS
  10417. $_SERVER
  10418. $_SERVER['PHP_SELF']
  10419. $_SERVER['argv']
  10420. $_SERVER['argc']
  10421. $_SERVER['GATEWAY_INTERFACE']
  10422. $_SERVER['SERVER_NAME']
  10423. $_SERVER['SERVER_SOFTWARE']
  10424. $_SERVER['SERVER_PROTOCOL']
  10425. $_SERVER['REQUEST_METHOD']
  10426. $_SERVER['QUERY_STRING']
  10427. $_SERVER['DOCUMENT_ROOT']
  10428. $_SERVER['HTTP_ACCEPT']
  10429. $_SERVER['HTTP_ACCEPT_CHARSET']
  10430. $_SERVER['HTTP_ACCEPT_ENCODING']
  10431. $_SERVER['HTTP_ACCEPT_LANGUAGE']
  10432. $_SERVER['HTTP_CONNECTION']
  10433. $_SERVER['HTTP_HOST']
  10434. $_SERVER['HTTP_REFERER']
  10435. $_SERVER['HTTP_USER_AGENT']
  10436. $_SERVER['REMOTE_ADDR']
  10437. $_SERVER['REMOTE_HOST']
  10438. $_SERVER['REMOTE_PORT']
  10439. $_SERVER['SCRIPT_FILENAME']
  10440. $_SERVER['SERVER_ADMIN']
  10441. $_SERVER['SERVER_PORT']
  10442. $_SERVER['SERVER_SIGNATURE']
  10443. $_SERVER['PATH_TRANSLATED']
  10444. $_SERVER['SCRIPT_NAME']
  10445. $_SERVER['REQUEST_URI']
  10446. $_SERVER['PHP_AUTH_USER']
  10447. $_SERVER['PHP_AUTH_PW']
  10448. $_SERVER['AUTH_TYPE']
  10449. $_ENV
  10450. $_GET
  10451. $_POST
  10452. $_COOKIE
  10453. $_REQUEST
  10454. $_FILES
  10455. $_SESSION
  10456. apache_child_terminate()
  10457. apache_get_version()
  10458. apache_lookup_uri()
  10459. apache_note()
  10460. apache_request_headers()
  10461. apache_response_headers()
  10462. apache_setenv()
  10463. ascii2ebcdic()
  10464. ebcdic2ascii()
  10465. getallheaders()
  10466. virtual()
  10467. array_change_key_case()
  10468. array_chunk()
  10469. array_combine()
  10470. array_count_values()
  10471. array_diff_assoc()
  10472. array_diff_uassoc()
  10473. array_diff()
  10474. array_fill()
  10475. array_filter()
  10476. array_flip()
  10477. array_intersect_assoc()
  10478. array_intersect()
  10479. array_key_exists()
  10480. array_keys()
  10481. array_map()
  10482. array_merge_recursive()
  10483. array_merge()
  10484. array_multisort()
  10485. array_pad()
  10486. array_pop()
  10487. array_push()
  10488. array_rand()
  10489. array_reduce()
  10490. array_reverse()
  10491. array_search()
  10492. array_shift()
  10493. array_slice()
  10494. array_splice()
  10495. array_sum()
  10496. array_udiff_assoc()
  10497. array_udiff_uassoc()
  10498. array_udiff()
  10499. array_unique()
  10500. array_unshift()
  10501. array_values()
  10502. array_walk()
  10503. array()
  10504. arsort()
  10505. asort()
  10506. compact()
  10507. count()
  10508. current()
  10509. each()
  10510. end()
  10511. extract()
  10512. in_array()
  10513. key()
  10514. krsort()
  10515. ksort()
  10516. list()
  10517. natcasesort()
  10518. natsort()
  10519. next()
  10520. pos()
  10521. prev()
  10522. range()
  10523. reset()
  10524. rsort()
  10525. shuffle()
  10526. sizeof()
  10527. sort()
  10528. uasort()
  10529. uksort()
  10530. usort()
  10531. aspell_check_raw()
  10532. aspell_check()
  10533. aspell_new()
  10534. aspell_suggest()
  10535. bcadd()
  10536. bccomp()
  10537. bcdiv()
  10538. bcmod()
  10539. bcmul()
  10540. bcpow()
  10541. bcpowmod()
  10542. bcscale()
  10543. bcsqrt()
  10544. bcsub()
  10545. bzclose()
  10546. bzcompress()
  10547. bzdecompress()
  10548. bzerrno()
  10549. bzerror()
  10550. bzerrstr()
  10551. bzflush()
  10552. bzopen()
  10553. bzread()
  10554. bzwrite()
  10555. cal_days_in_month()
  10556. cal_from_jd()
  10557. cal_info()
  10558. cal_to_jd()
  10559. easter_date()
  10560. easter_days()
  10561. FrenchToJD()
  10562. GregorianToJD()
  10563. JDDayOfWeek()
  10564. JDMonthName()
  10565. JDToFrench()
  10566. JDToGregorian()
  10567. jdtojewish()
  10568. JDToJulian()
  10569. jdtounix()
  10570. JewishToJD()
  10571. JulianToJD()
  10572. unixtojd()
  10573. ccvs_add()
  10574. ccvs_auth()
  10575. ccvs_command()
  10576. ccvs_count()
  10577. ccvs_delete()
  10578. ccvs_done()
  10579. ccvs_init()
  10580. ccvs_lookup()
  10581. ccvs_new()
  10582. ccvs_report()
  10583. ccvs_return()
  10584. ccvs_reverse()
  10585. ccvs_sale()
  10586. ccvs_status()
  10587. ccvs_textvalue()
  10588. ccvs_void()
  10589. COM()
  10590. VARIANT()
  10591. com_addref()
  10592. com_get()
  10593. com_invoke()
  10594. com_isenum()
  10595. com_load_typelib()
  10596. com_load()
  10597. com_propget()
  10598. com_propput()
  10599. com_propset()
  10600. com_release()
  10601. com_set()
  10602. call_user_method_array()
  10603. call_user_method()
  10604. class_exists()
  10605. get_class_methods()
  10606. get_class_vars()
  10607. get_class()
  10608. get_declared_classes()
  10609. get_object_vars()
  10610. get_parent_class()
  10611. is_a()
  10612. is_subclass_of()
  10613. method_exists()
  10614. cpdf_add_annotation()
  10615. cpdf_add_outline()
  10616. cpdf_arc()
  10617. cpdf_begin_text()
  10618. cpdf_circle()
  10619. cpdf_clip()
  10620. cpdf_close()
  10621. cpdf_closepath_fill_stroke()
  10622. cpdf_closepath_stroke()
  10623. cpdf_closepath()
  10624. cpdf_continue_text()
  10625. cpdf_curveto()
  10626. cpdf_end_text()
  10627. cpdf_fill_stroke()
  10628. cpdf_fill()
  10629. cpdf_finalize_page()
  10630. cpdf_finalize()
  10631. cpdf_global_set_document_limits()
  10632. cpdf_import_jpeg()
  10633. cpdf_lineto()
  10634. cpdf_moveto()
  10635. cpdf_newpath()
  10636. cpdf_open()
  10637. cpdf_output_buffer()
  10638. cpdf_page_init()
  10639. cpdf_place_inline_image()
  10640. cpdf_rect()
  10641. cpdf_restore()
  10642. cpdf_rlineto()
  10643. cpdf_rmoveto()
  10644. cpdf_rotate_text()
  10645. cpdf_rotate()
  10646. cpdf_save_to_file()
  10647. cpdf_save()
  10648. cpdf_scale()
  10649. cpdf_set_action_url()
  10650. cpdf_set_char_spacing()
  10651. cpdf_set_creator()
  10652. cpdf_set_current_page()
  10653. cpdf_set_font_directories()
  10654. cpdf_set_font_map_file()
  10655. cpdf_set_font()
  10656. cpdf_set_horiz_scaling()
  10657. cpdf_set_keywords()
  10658. cpdf_set_leading()
  10659. cpdf_set_page_animation()
  10660. cpdf_set_subject()
  10661. cpdf_set_text_matrix()
  10662. cpdf_set_text_pos()
  10663. cpdf_set_text_rendering()
  10664. cpdf_set_text_rise()
  10665. cpdf_set_title()
  10666. cpdf_set_viewer_preferences()
  10667. cpdf_set_word_spacing()
  10668. cpdf_setdash()
  10669. cpdf_setflat()
  10670. cpdf_setgray_fill()
  10671. cpdf_setgray_stroke()
  10672. cpdf_setgray()
  10673. cpdf_setlinecap()
  10674. cpdf_setlinejoin()
  10675. cpdf_setlinewidth()
  10676. cpdf_setmiterlimit()
  10677. cpdf_setrgbcolor_fill()
  10678. cpdf_setrgbcolor_stroke()
  10679. cpdf_setrgbcolor()
  10680. cpdf_show_xy()
  10681. cpdf_show()
  10682. cpdf_stringwidth()
  10683. cpdf_stroke()
  10684. cpdf_text()
  10685. cpdf_translate()
  10686. crack_check()
  10687. crack_closedict()
  10688. crack_getlastmessage()
  10689. crack_opendict()
  10690. curl_close()
  10691. curl_errno()
  10692. curl_error()
  10693. curl_exec()
  10694. curl_getinfo()
  10695. curl_init()
  10696. curl_multi_add_handle()
  10697. curl_multi_close()
  10698. curl_multi_exec()
  10699. curl_multi_getcontent()
  10700. curl_multi_info_read()
  10701. curl_multi_init()
  10702. curl_multi_remove_handle()
  10703. curl_multi_select()
  10704. curl_setopt()
  10705. curl_version()
  10706. cybercash_base64_decode()
  10707. cybercash_base64_encode()
  10708. cybercash_decr()
  10709. cybercash_encr()
  10710. cyrus_authenticate()
  10711. cyrus_bind()
  10712. cyrus_close()
  10713. cyrus_connect()
  10714. cyrus_query()
  10715. cyrus_unbind()
  10716. ctype_alnum()
  10717. ctype_alpha()
  10718. ctype_cntrl()
  10719. ctype_digit()
  10720. ctype_graph()
  10721. ctype_lower()
  10722. ctype_print()
  10723. ctype_punct()
  10724. ctype_space()
  10725. ctype_upper()
  10726. ctype_xdigit()
  10727. dba_close()
  10728. dba_delete()
  10729. dba_exists()
  10730. dba_fetch()
  10731. dba_firstkey()
  10732. dba_handlers()
  10733. dba_insert()
  10734. dba_key_split()
  10735. dba_list()
  10736. dba_nextkey()
  10737. dba_open()
  10738. dba_optimize()
  10739. dba_popen()
  10740. dba_replace()
  10741. dba_sync()
  10742. checkdate()
  10743. date()
  10744. getdate()
  10745. gettimeofday()
  10746. gmdate()
  10747. gmmktime()
  10748. gmstrftime()
  10749. localtime()
  10750. microtime()
  10751. mktime()
  10752. strftime()
  10753. strtotime()
  10754. time()
  10755. dbase_add_record()
  10756. dbase_close()
  10757. dbase_create()
  10758. dbase_delete_record()
  10759. dbase_get_header_info()
  10760. dbase_get_record_with_names()
  10761. dbase_get_record()
  10762. dbase_numfields()
  10763. dbase_numrecords()
  10764. dbase_open()
  10765. dbase_pack()
  10766. dbase_replace_record()
  10767. dblist()
  10768. dbmclose()
  10769. dbmdelete()
  10770. dbmexists()
  10771. dbmfetch()
  10772. dbmfirstkey()
  10773. dbminsert()
  10774. dbmnextkey()
  10775. dbmopen()
  10776. dbmreplace()
  10777. dbx_close()
  10778. dbx_compare()
  10779. dbx_connect()
  10780. dbx_error()
  10781. dbx_escape_string()
  10782. dbx_fetch_row()
  10783. dbx_query()
  10784. dbx_sort()
  10785. dbplus_add()
  10786. dbplus_aql()
  10787. dbplus_chdir()
  10788. dbplus_close()
  10789. dbplus_curr()
  10790. dbplus_errcode()
  10791. dbplus_errno()
  10792. dbplus_find()
  10793. dbplus_first()
  10794. dbplus_flush()
  10795. dbplus_freealllocks()
  10796. dbplus_freelock()
  10797. dbplus_freerlocks()
  10798. dbplus_getlock()
  10799. dbplus_getunique()
  10800. dbplus_info()
  10801. dbplus_last()
  10802. dbplus_lockrel()
  10803. dbplus_next()
  10804. dbplus_open()
  10805. dbplus_prev()
  10806. dbplus_rchperm()
  10807. dbplus_rcreate()
  10808. dbplus_rcrtexact()
  10809. dbplus_rcrtlike()
  10810. dbplus_resolve()
  10811. dbplus_restorepos()
  10812. dbplus_rkeys()
  10813. dbplus_ropen()
  10814. dbplus_rquery()
  10815. dbplus_rrename()
  10816. dbplus_rsecindex()
  10817. dbplus_runlink()
  10818. dbplus_rzap()
  10819. dbplus_savepos()
  10820. dbplus_setindex()
  10821. dbplus_setindexbynumber()
  10822. dbplus_sql()
  10823. dbplus_tcl()
  10824. dbplus_tremove()
  10825. dbplus_undo()
  10826. dbplus_undoprepare()
  10827. dbplus_unlockrel()
  10828. dbplus_unselect()
  10829. dbplus_update()
  10830. dbplus_xlockrel()
  10831. dbplus_xunlockrel()
  10832. dio_close()
  10833. dio_fcntl()
  10834. dio_open()
  10835. dio_read()
  10836. dio_seek()
  10837. dio_stat()
  10838. dio_tcsetattr()
  10839. dio_truncate()
  10840. dio_write()
  10841. chdir()
  10842. chroot()
  10843. dir()
  10844. closedir()
  10845. getcwd()
  10846. opendir()
  10847. readdir()
  10848. rewinddir()
  10849. scandir()
  10850. DomAttribute->name()
  10851. DomAttribute->specified()
  10852. DomAttribute->value()
  10853. DomDocument->add_root [deprecated]()
  10854. DomDocument->create_attribute()
  10855. DomDocument->create_cdata_section()
  10856. DomDocument->create_comment()
  10857. DomDocument->create_element_ns()
  10858. DomDocument->create_element()
  10859. DomDocument->create_entity_reference()
  10860. DomDocument->create_processing_instruction()
  10861. DomDocument->create_text_node()
  10862. DomDocument->doctype()
  10863. DomDocument->document_element()
  10864. DomDocument->dump_file()
  10865. DomDocument->dump_mem()
  10866. DomDocument->get_element_by_id()
  10867. DomDocument->get_elements_by_tagname()
  10868. DomDocument->html_dump_mem()
  10869. DomDocument->xinclude()
  10870. DomDocumentType->entities()
  10871. DomDocumentType->internal_subset()
  10872. DomDocumentType->name()
  10873. DomDocumentType->notations()
  10874. DomDocumentType->public_id()
  10875. DomDocumentType->system_id()
  10876. DomElement->get_attribute_node()
  10877. DomElement->get_attribute()
  10878. DomElement->get_elements_by_tagname()
  10879. DomElement->has_attribute()
  10880. DomElement->remove_attribute()
  10881. DomElement->set_attribute()
  10882. DomElement->tagname()
  10883. DomNode->add_namespace()
  10884. DomNode->append_child()
  10885. DomNode->append_sibling()
  10886. DomNode->attributes()
  10887. DomNode->child_nodes()
  10888. DomNode->clone_node()
  10889. DomNode->dump_node()
  10890. DomNode->first_child()
  10891. DomNode->get_content()
  10892. DomNode->has_attributes()
  10893. DomNode->has_child_nodes()
  10894. DomNode->insert_before()
  10895. DomNode->is_blank_node()
  10896. DomNode->last_child()
  10897. DomNode->next_sibling()
  10898. DomNode->node_name()
  10899. DomNode->node_type()
  10900. DomNode->node_value()
  10901. DomNode->owner_document()
  10902. DomNode->parent_node()
  10903. DomNode->prefix()
  10904. DomNode->previous_sibling()
  10905. DomNode->remove_child()
  10906. DomNode->replace_child()
  10907. DomNode->replace_node()
  10908. DomNode->set_content()
  10909. DomNode->set_name()
  10910. DomNode->set_namespace()
  10911. DomNode->unlink_node()
  10912. DomProcessingInstruction->data()
  10913. DomProcessingInstruction->target()
  10914. DomXsltStylesheet->process()
  10915. DomXsltStylesheet->result_dump_file()
  10916. DomXsltStylesheet->result_dump_mem()
  10917. domxml_new_doc()
  10918. domxml_open_file()
  10919. domxml_open_mem()
  10920. domxml_version()
  10921. domxml_xmltree()
  10922. domxml_xslt_stylesheet_doc()
  10923. domxml_xslt_stylesheet_file()
  10924. domxml_xslt_stylesheet()
  10925. xpath_eval_expression()
  10926. xpath_eval()
  10927. xpath_new_context()
  10928. xptr_eval()
  10929. xptr_new_context()
  10930. dotnet_load()
  10931. debug_backtrace()
  10932. debug_print_backtrace()
  10933. error_log()
  10934. error_reporting()
  10935. restore_error_handler()
  10936. set_error_handler()
  10937. trigger_error()
  10938. user_error()
  10939. fam_cancel_monitor()
  10940. fam_close()
  10941. fam_monitor_collection()
  10942. fam_monitor_directory()
  10943. fam_monitor_file()
  10944. fam_next_event()
  10945. fam_open()
  10946. fam_pending()
  10947. fam_resume_monitor()
  10948. fam_suspend_monitor()
  10949. fbsql_affected_rows()
  10950. fbsql_autocommit()
  10951. fbsql_change_user()
  10952. fbsql_close()
  10953. fbsql_commit()
  10954. fbsql_connect()
  10955. fbsql_create_blob()
  10956. fbsql_create_clob()
  10957. fbsql_create_db()
  10958. fbsql_data_seek()
  10959. fbsql_database_password()
  10960. fbsql_database()
  10961. fbsql_db_query()
  10962. fbsql_db_status()
  10963. fbsql_drop_db()
  10964. fbsql_errno()
  10965. fbsql_error()
  10966. fbsql_fetch_array()
  10967. fbsql_fetch_assoc()
  10968. fbsql_fetch_field()
  10969. fbsql_fetch_lengths()
  10970. fbsql_fetch_object()
  10971. fbsql_fetch_row()
  10972. fbsql_field_flags()
  10973. fbsql_field_len()
  10974. fbsql_field_name()
  10975. fbsql_field_seek()
  10976. fbsql_field_table()
  10977. fbsql_field_type()
  10978. fbsql_free_result()
  10979. fbsql_get_autostart_info()
  10980. fbsql_hostname()
  10981. fbsql_insert_id()
  10982. fbsql_list_dbs()
  10983. fbsql_list_fields()
  10984. fbsql_list_tables()
  10985. fbsql_next_result()
  10986. fbsql_num_fields()
  10987. fbsql_num_rows()
  10988. fbsql_password()
  10989. fbsql_pconnect()
  10990. fbsql_query()
  10991. fbsql_read_blob()
  10992. fbsql_read_clob()
  10993. fbsql_result()
  10994. fbsql_rollback()
  10995. fbsql_select_db()
  10996. fbsql_set_lob_mode()
  10997. fbsql_set_transaction()
  10998. fbsql_start_db()
  10999. fbsql_stop_db()
  11000. fbsql_tablename()
  11001. fbsql_username()
  11002. fbsql_warnings()
  11003. filepro_fieldcount()
  11004. filepro_fieldname()
  11005. filepro_fieldtype()
  11006. filepro_fieldwidth()
  11007. filepro_retrieve()
  11008. filepro_rowcount()
  11009. filepro()
  11010. basename()
  11011. chgrp()
  11012. chmod()
  11013. chown()
  11014. clearstatcache()
  11015. copy()
  11016. delete()
  11017. dirname()
  11018. disk_free_space()
  11019. disk_total_space()
  11020. diskfreespace()
  11021. fclose()
  11022. feof()
  11023. fflush()
  11024. fgetc()
  11025. fgetcsv()
  11026. fgets()
  11027. fgetss()
  11028. file_exists()
  11029. file_get_contents()
  11030. file_put_contents()
  11031. file()
  11032. fileatime()
  11033. filectime()
  11034. filegroup()
  11035. fileinode()
  11036. filemtime()
  11037. fileowner()
  11038. fileperms()
  11039. filesize()
  11040. filetype()
  11041. flock()
  11042. fnmatch()
  11043. fopen()
  11044. fpassthru()
  11045. fputs()
  11046. fread()
  11047. fscanf()
  11048. fseek()
  11049. fstat()
  11050. ftell()
  11051. ftruncate()
  11052. fwrite()
  11053. glob()
  11054. is_dir()
  11055. is_executable()
  11056. is_file()
  11057. is_link()
  11058. is_readable()
  11059. is_uploaded_file()
  11060. is_writable()
  11061. is_writeable()
  11062. link()
  11063. linkinfo()
  11064. lstat()
  11065. mkdir()
  11066. move_uploaded_file()
  11067. parse_ini_file()
  11068. pathinfo()
  11069. pclose()
  11070. popen()
  11071. readfile()
  11072. readlink()
  11073. realpath()
  11074. rename()
  11075. rewind()
  11076. rmdir()
  11077. set_file_buffer()
  11078. stat()
  11079. symlink()
  11080. tempnam()
  11081. tmpfile()
  11082. touch()
  11083. umask()
  11084. unlink()
  11085. fdf_add_doc_javascript()
  11086. fdf_add_template()
  11087. fdf_close()
  11088. fdf_create()
  11089. fdf_enum_values()
  11090. fdf_errno()
  11091. fdf_error()
  11092. fdf_get_ap()
  11093. fdf_get_attachment()
  11094. fdf_get_encoding()
  11095. fdf_get_file()
  11096. fdf_get_flags()
  11097. fdf_get_opt()
  11098. fdf_get_status()
  11099. fdf_get_value()
  11100. fdf_get_version()
  11101. fdf_header()
  11102. fdf_next_field_name()
  11103. fdf_open_string()
  11104. fdf_open()
  11105. fdf_remove_item()
  11106. fdf_save_string()
  11107. fdf_save()
  11108. fdf_set_ap()
  11109. fdf_set_encoding()
  11110. fdf_set_file()
  11111. fdf_set_flags()
  11112. fdf_set_javascript_action()
  11113. fdf_set_opt()
  11114. fdf_set_status()
  11115. fdf_set_submit_form_action()
  11116. fdf_set_target_frame()
  11117. fdf_set_value()
  11118. fdf_set_version()
  11119. fribidi_log2vis()
  11120. ftp_alloc()
  11121. ftp_cdup()
  11122. ftp_chdir()
  11123. ftp_chmod()
  11124. ftp_close()
  11125. ftp_connect()
  11126. ftp_delete()
  11127. ftp_exec()
  11128. ftp_fget()
  11129. ftp_fput()
  11130. ftp_get_option()
  11131. ftp_get()
  11132. ftp_login()
  11133. ftp_mdtm()
  11134. ftp_mkdir()
  11135. ftp_nb_continue()
  11136. ftp_nb_fget()
  11137. ftp_nb_fput()
  11138. ftp_nb_get()
  11139. ftp_nb_put()
  11140. ftp_nlist()
  11141. ftp_pasv()
  11142. ftp_put()
  11143. ftp_pwd()
  11144. ftp_quit()
  11145. ftp_raw()
  11146. ftp_rawlist()
  11147. ftp_rename()
  11148. ftp_rmdir()
  11149. ftp_set_option()
  11150. ftp_site()
  11151. ftp_size()
  11152. ftp_ssl_connect()
  11153. ftp_systype()
  11154. call_user_func_array()
  11155. call_user_func()
  11156. create_function()
  11157. func_get_arg()
  11158. func_get_args()
  11159. func_num_args()
  11160. function_exists()
  11161. get_defined_functions()
  11162. register_shutdown_function()
  11163. register_tick_function()
  11164. unregister_tick_function()
  11165. bind_textdomain_codeset()
  11166. bindtextdomain()
  11167. dcgettext()
  11168. dcngettext()
  11169. dgettext()
  11170. dngettext()
  11171. gettext()
  11172. ngettext()
  11173. textdomain()
  11174. gmp_abs()
  11175. gmp_add()
  11176. gmp_and()
  11177. gmp_clrbit()
  11178. gmp_cmp()
  11179. gmp_com()
  11180. gmp_div_q()
  11181. gmp_div_qr()
  11182. gmp_div_r()
  11183. gmp_div()
  11184. gmp_divexact()
  11185. gmp_fact()
  11186. gmp_gcd()
  11187. gmp_gcdext()
  11188. gmp_hamdist()
  11189. gmp_init()
  11190. gmp_intval()
  11191. gmp_invert()
  11192. gmp_jacobi()
  11193. gmp_legendre()
  11194. gmp_mod()
  11195. gmp_mul()
  11196. gmp_neg()
  11197. gmp_or()
  11198. gmp_perfect_square()
  11199. gmp_popcount()
  11200. gmp_pow()
  11201. gmp_powm()
  11202. gmp_prob_prime()
  11203. gmp_random()
  11204. gmp_scan0()
  11205. gmp_scan1()
  11206. gmp_setbit()
  11207. gmp_sign()
  11208. gmp_sqrt()
  11209. gmp_sqrtrm()
  11210. gmp_strval()
  11211. gmp_sub()
  11212. gmp_xor()
  11213. header()
  11214. headers_list()
  11215. headers_sent()
  11216. setcookie()
  11217. hw_Array2Objrec()
  11218. hw_changeobject()
  11219. hw_Children()
  11220. hw_ChildrenObj()
  11221. hw_Close()
  11222. hw_Connect()
  11223. hw_connection_info()
  11224. hw_cp()
  11225. hw_Deleteobject()
  11226. hw_DocByAnchor()
  11227. hw_DocByAnchorObj()
  11228. hw_Document_Attributes()
  11229. hw_Document_BodyTag()
  11230. hw_Document_Content()
  11231. hw_Document_SetContent()
  11232. hw_Document_Size()
  11233. hw_dummy()
  11234. hw_EditText()
  11235. hw_Error()
  11236. hw_ErrorMsg()
  11237. hw_Free_Document()
  11238. hw_GetAnchors()
  11239. hw_GetAnchorsObj()
  11240. hw_GetAndLock()
  11241. hw_GetChildColl()
  11242. hw_GetChildCollObj()
  11243. hw_GetChildDocColl()
  11244. hw_GetChildDocCollObj()
  11245. hw_GetObject()
  11246. hw_GetObjectByQuery()
  11247. hw_GetObjectByQueryColl()
  11248. hw_GetObjectByQueryCollObj()
  11249. hw_GetObjectByQueryObj()
  11250. hw_GetParents()
  11251. hw_GetParentsObj()
  11252. hw_getrellink()
  11253. hw_GetRemote()
  11254. hw_getremotechildren()
  11255. hw_GetSrcByDestObj()
  11256. hw_GetText()
  11257. hw_getusername()
  11258. hw_Identify()
  11259. hw_InCollections()
  11260. hw_Info()
  11261. hw_InsColl()
  11262. hw_InsDoc()
  11263. hw_insertanchors()
  11264. hw_InsertDocument()
  11265. hw_InsertObject()
  11266. hw_mapid()
  11267. hw_Modifyobject()
  11268. hw_mv()
  11269. hw_New_Document()
  11270. hw_objrec2array()
  11271. hw_Output_Document()
  11272. hw_pConnect()
  11273. hw_PipeDocument()
  11274. hw_Root()
  11275. hw_setlinkroot()
  11276. hw_stat()
  11277. hw_Unlock()
  11278. hw_Who()
  11279. hw_api_attribute->key()
  11280. hw_api_attribute->langdepvalue()
  11281. hw_api_attribute->value()
  11282. hw_api_attribute->values()
  11283. hw_api_attribute()
  11284. hw_api->checkin()
  11285. hw_api->checkout()
  11286. hw_api->children()
  11287. hw_api_content->mimetype()
  11288. hw_api_content->read()
  11289. hw_api->content()
  11290. hw_api->copy()
  11291. hw_api->dbstat()
  11292. hw_api->dcstat()
  11293. hw_api->dstanchors()
  11294. hw_api->dstofsrcanchors()
  11295. hw_api_error->count()
  11296. hw_api_error->reason()
  11297. hw_api->find()
  11298. hw_api->ftstat()
  11299. hwapi_hgcsp()
  11300. hw_api->hwstat()
  11301. hw_api->identify()
  11302. hw_api->info()
  11303. hw_api->insert()
  11304. hw_api->insertanchor()
  11305. hw_api->insertcollection()
  11306. hw_api->insertdocument()
  11307. hw_api->link()
  11308. hw_api->lock()
  11309. hw_api->move()
  11310. hw_api_content()
  11311. hw_api_object->assign()
  11312. hw_api_object->attreditable()
  11313. hw_api_object->count()
  11314. hw_api_object->insert()
  11315. hw_api_object()
  11316. hw_api_object->remove()
  11317. hw_api_object->title()
  11318. hw_api_object->value()
  11319. hw_api->object()
  11320. hw_api->objectbyanchor()
  11321. hw_api->parents()
  11322. hw_api_reason->description()
  11323. hw_api_reason->type()
  11324. hw_api->remove()
  11325. hw_api->replace()
  11326. hw_api->setcommitedversion()
  11327. hw_api->srcanchors()
  11328. hw_api->srcsofdst()
  11329. hw_api->unlock()
  11330. hw_api->user()
  11331. hw_api->userlist()
  11332. iconv_get_encoding()
  11333. iconv_mime_decode()
  11334. iconv_mime_encode()
  11335. iconv_set_encoding()
  11336. iconv_strlen()
  11337. iconv_strpos()
  11338. iconv_strrpos()
  11339. iconv_substr()
  11340. iconv()
  11341. ob_iconv_handler()
  11342. exif_imagetype()
  11343. exif_read_data()
  11344. exif_thumbnail()
  11345. gd_info()
  11346. getimagesize()
  11347. image_type_to_mime_type()
  11348. image2wbmp()
  11349. imagealphablending()
  11350. imageantialias()
  11351. imagearc()
  11352. imagechar()
  11353. imagecharup()
  11354. imagecolorallocate()
  11355. imagecolorallocatealpha()
  11356. imagecolorat()
  11357. imagecolorclosest()
  11358. imagecolorclosestalpha()
  11359. imagecolorclosesthwb()
  11360. imagecolordeallocate()
  11361. imagecolorexact()
  11362. imagecolorexactalpha()
  11363. imagecolormatch()
  11364. imagecolorresolve()
  11365. imagecolorresolvealpha()
  11366. imagecolorset()
  11367. imagecolorsforindex()
  11368. imagecolorstotal()
  11369. imagecolortransparent()
  11370. imagecopy()
  11371. imagecopymerge()
  11372. imagecopymergegray()
  11373. imagecopyresampled()
  11374. imagecopyresized()
  11375. imagecreate()
  11376. imagecreatefromgd2()
  11377. imagecreatefromgd2part()
  11378. imagecreatefromgd()
  11379. imagecreatefromgif()
  11380. imagecreatefromjpeg()
  11381. imagecreatefrompng()
  11382. imagecreatefromstring()
  11383. imagecreatefromwbmp()
  11384. imagecreatefromxbm()
  11385. imagecreatefromxpm()
  11386. imagecreatetruecolor()
  11387. imagedashedline()
  11388. imagedestroy()
  11389. imageellipse()
  11390. imagefill()
  11391. imagefilledarc()
  11392. imagefilledellipse()
  11393. imagefilledpolygon()
  11394. imagefilledrectangle()
  11395. imagefilltoborder()
  11396. imagefontheight()
  11397. imagefontwidth()
  11398. imageftbbox()
  11399. imagefttext()
  11400. imagegammacorrect()
  11401. imagegd2()
  11402. imagegd()
  11403. imagegif()
  11404. imageinterlace()
  11405. imageistruecolor()
  11406. imagejpeg()
  11407. imageline()
  11408. imageloadfont()
  11409. imagepalettecopy()
  11410. imagepng()
  11411. imagepolygon()
  11412. imagepsbbox()
  11413. imagepscopyfont()
  11414. imagepsencodefont()
  11415. imagepsextendfont()
  11416. imagepsfreefont()
  11417. imagepsloadfont()
  11418. imagepsslantfont()
  11419. imagepstext()
  11420. imagerectangle()
  11421. imagerotate()
  11422. imagesavealpha()
  11423. imagesetbrush()
  11424. imagesetpixel()
  11425. imagesetstyle()
  11426. imagesetthickness()
  11427. imagesettile()
  11428. imagestring()
  11429. imagestringup()
  11430. imagesx()
  11431. imagesy()
  11432. imagetruecolortopalette()
  11433. imagettfbbox()
  11434. imagettftext()
  11435. imagetypes()
  11436. imagewbmp()
  11437. iptcembed()
  11438. iptcparse()
  11439. jpeg2wbmp()
  11440. png2wbmp()
  11441. read_exif_data()
  11442. imap_8bit()
  11443. imap_alerts()
  11444. imap_append()
  11445. imap_base64()
  11446. imap_binary()
  11447. imap_body()
  11448. imap_bodystruct()
  11449. imap_check()
  11450. imap_clearflag_full()
  11451. imap_close()
  11452. imap_createmailbox()
  11453. imap_delete()
  11454. imap_deletemailbox()
  11455. imap_errors()
  11456. imap_expunge()
  11457. imap_fetch_overview()
  11458. imap_fetchbody()
  11459. imap_fetchheader()
  11460. imap_fetchstructure()
  11461. imap_get_quota()
  11462. imap_get_quotaroot()
  11463. imap_getacl()
  11464. imap_getmailboxes()
  11465. imap_getsubscribed()
  11466. imap_header()
  11467. imap_headerinfo()
  11468. imap_headers()
  11469. imap_last_error()
  11470. imap_list()
  11471. imap_listmailbox()
  11472. imap_listscan()
  11473. imap_listsubscribed()
  11474. imap_lsub()
  11475. imap_mail_compose()
  11476. imap_mail_copy()
  11477. imap_mail_move()
  11478. imap_mail()
  11479. imap_mailboxmsginfo()
  11480. imap_mime_header_decode()
  11481. imap_msgno()
  11482. imap_num_msg()
  11483. imap_num_recent()
  11484. imap_open()
  11485. imap_ping()
  11486. imap_qprint()
  11487. imap_renamemailbox()
  11488. imap_reopen()
  11489. imap_rfc822_parse_adrlist()
  11490. imap_rfc822_parse_headers()
  11491. imap_rfc822_write_address()
  11492. imap_scanmailbox()
  11493. imap_search()
  11494. imap_set_quota()
  11495. imap_setacl()
  11496. imap_setflag_full()
  11497. imap_sort()
  11498. imap_status()
  11499. imap_subscribe()
  11500. imap_thread()
  11501. imap_timeout()
  11502. imap_uid()
  11503. imap_undelete()
  11504. imap_unsubscribe()
  11505. imap_utf7_decode()
  11506. imap_utf7_encode()
  11507. imap_utf8()
  11508. ifx_affected_rows()
  11509. ifx_blobinfile_mode()
  11510. ifx_byteasvarchar()
  11511. ifx_close()
  11512. ifx_connect()
  11513. ifx_copy_blob()
  11514. ifx_create_blob()
  11515. ifx_create_char()
  11516. ifx_do()
  11517. ifx_error()
  11518. ifx_errormsg()
  11519. ifx_fetch_row()
  11520. ifx_fieldproperties()
  11521. ifx_fieldtypes()
  11522. ifx_free_blob()
  11523. ifx_free_char()
  11524. ifx_free_result()
  11525. ifx_get_blob()
  11526. ifx_get_char()
  11527. ifx_getsqlca()
  11528. ifx_htmltbl_result()
  11529. ifx_nullformat()
  11530. ifx_num_fields()
  11531. ifx_num_rows()
  11532. ifx_pconnect()
  11533. ifx_prepare()
  11534. ifx_query()
  11535. ifx_textasvarchar()
  11536. ifx_update_blob()
  11537. ifx_update_char()
  11538. ifxus_close_slob()
  11539. ifxus_create_slob()
  11540. ifxus_free_slob()
  11541. ifxus_open_slob()
  11542. ifxus_read_slob()
  11543. ifxus_seek_slob()
  11544. ifxus_tell_slob()
  11545. ifxus_write_slob()
  11546. ibase_add_user()
  11547. ibase_affected_rows()
  11548. ibase_blob_add()
  11549. ibase_blob_cancel()
  11550. ibase_blob_close()
  11551. ibase_blob_create()
  11552. ibase_blob_echo()
  11553. ibase_blob_get()
  11554. ibase_blob_import()
  11555. ibase_blob_info()
  11556. ibase_blob_open()
  11557. ibase_close()
  11558. ibase_commit_ret()
  11559. ibase_commit()
  11560. ibase_connect()
  11561. ibase_delete_user()
  11562. ibase_drop_db()
  11563. ibase_errcode()
  11564. ibase_errmsg()
  11565. ibase_execute()
  11566. ibase_fetch_assoc()
  11567. ibase_fetch_object()
  11568. ibase_fetch_row()
  11569. ibase_field_info()
  11570. ibase_free_event_handler()
  11571. ibase_free_query()
  11572. ibase_free_result()
  11573. ibase_gen_id()
  11574. ibase_modify_user()
  11575. ibase_name_result()
  11576. ibase_num_fields()
  11577. ibase_num_params()
  11578. ibase_param_info()
  11579. ibase_pconnect()
  11580. ibase_prepare()
  11581. ibase_query()
  11582. ibase_rollback_ret()
  11583. ibase_rollback()
  11584. ibase_set_event_handler()
  11585. ibase_timefmt()
  11586. ibase_trans()
  11587. ibase_wait_event()
  11588. ingres_autocommit()
  11589. ingres_close()
  11590. ingres_commit()
  11591. ingres_connect()
  11592. ingres_fetch_array()
  11593. ingres_fetch_object()
  11594. ingres_fetch_row()
  11595. ingres_field_length()
  11596. ingres_field_name()
  11597. ingres_field_nullable()
  11598. ingres_field_precision()
  11599. ingres_field_scale()
  11600. ingres_field_type()
  11601. ingres_num_fields()
  11602. ingres_num_rows()
  11603. ingres_pconnect()
  11604. ingres_query()
  11605. ingres_rollback()
  11606. ircg_channel_mode()
  11607. ircg_disconnect()
  11608. ircg_fetch_error_msg()
  11609. ircg_get_username()
  11610. ircg_html_encode()
  11611. ircg_ignore_add()
  11612. ircg_ignore_del()
  11613. ircg_is_conn_alive()
  11614. ircg_join()
  11615. ircg_kick()
  11616. ircg_lookup_format_messages()
  11617. ircg_msg()
  11618. ircg_nick()
  11619. ircg_nickname_escape()
  11620. ircg_nickname_unescape()
  11621. ircg_notice()
  11622. ircg_part()
  11623. ircg_pconnect()
  11624. ircg_register_format_messages()
  11625. ircg_set_current()
  11626. ircg_set_file()
  11627. ircg_set_on_die()
  11628. ircg_topic()
  11629. ircg_whois()
  11630. java_last_exception_clear()
  11631. java_last_exception_get()
  11632. ldap_8859_to_t61()
  11633. ldap_add()
  11634. ldap_bind()
  11635. ldap_close()
  11636. ldap_compare()
  11637. ldap_connect()
  11638. ldap_count_entries()
  11639. ldap_delete()
  11640. ldap_dn2ufn()
  11641. ldap_err2str()
  11642. ldap_errno()
  11643. ldap_error()
  11644. ldap_explode_dn()
  11645. ldap_first_attribute()
  11646. ldap_first_entry()
  11647. ldap_first_reference()
  11648. ldap_free_result()
  11649. ldap_get_attributes()
  11650. ldap_get_dn()
  11651. ldap_get_entries()
  11652. ldap_get_option()
  11653. ldap_get_values_len()
  11654. ldap_get_values()
  11655. ldap_list()
  11656. ldap_mod_add()
  11657. ldap_mod_del()
  11658. ldap_mod_replace()
  11659. ldap_modify()
  11660. ldap_next_attribute()
  11661. ldap_next_entry()
  11662. ldap_next_reference()
  11663. ldap_parse_reference()
  11664. ldap_parse_result()
  11665. ldap_read()
  11666. ldap_rename()
  11667. ldap_search()
  11668. ldap_set_option()
  11669. ldap_set_rebind_proc()
  11670. ldap_sort()
  11671. ldap_start_tls()
  11672. ldap_t61_to_8859()
  11673. ldap_unbind()
  11674. ezmlm_hash()
  11675. mail()
  11676. mailparse_determine_best_xfer_encoding()
  11677. mailparse_msg_create()
  11678. mailparse_msg_extract_part_file()
  11679. mailparse_msg_extract_part()
  11680. mailparse_msg_free()
  11681. mailparse_msg_get_part_data()
  11682. mailparse_msg_get_part()
  11683. mailparse_msg_get_structure()
  11684. mailparse_msg_parse_file()
  11685. mailparse_msg_parse()
  11686. mailparse_rfc822_parse_addresses()
  11687. mailparse_stream_encode()
  11688. mailparse_uudecode_all()
  11689. abs()
  11690. acos()
  11691. acosh()
  11692. asin()
  11693. asinh()
  11694. atan2()
  11695. atan()
  11696. atanh()
  11697. base_convert()
  11698. bindec()
  11699. ceil()
  11700. cos()
  11701. cosh()
  11702. decbin()
  11703. dechex()
  11704. decoct()
  11705. deg2rad()
  11706. exp()
  11707. expm1()
  11708. floor()
  11709. fmod()
  11710. getrandmax()
  11711. hexdec()
  11712. hypot()
  11713. is_finite()
  11714. is_infinite()
  11715. is_nan()
  11716. lcg_value()
  11717. log10()
  11718. log1p()
  11719. log()
  11720. max()
  11721. min()
  11722. mt_getrandmax()
  11723. mt_rand()
  11724. mt_srand()
  11725. octdec()
  11726. pi()
  11727. pow()
  11728. rad2deg()
  11729. rand()
  11730. round()
  11731. sin()
  11732. sinh()
  11733. sqrt()
  11734. srand()
  11735. tan()
  11736. tanh()
  11737. mb_convert_case()
  11738. mb_convert_encoding()
  11739. mb_convert_kana()
  11740. mb_convert_variables()
  11741. mb_decode_mimeheader()
  11742. mb_decode_numericentity()
  11743. mb_detect_encoding()
  11744. mb_detect_order()
  11745. mb_encode_mimeheader()
  11746. mb_encode_numericentity()
  11747. mb_ereg_match()
  11748. mb_ereg_replace()
  11749. mb_ereg_search_getpos()
  11750. mb_ereg_search_getregs()
  11751. mb_ereg_search_init()
  11752. mb_ereg_search_pos()
  11753. mb_ereg_search_regs()
  11754. mb_ereg_search_setpos()
  11755. mb_ereg_search()
  11756. mb_ereg()
  11757. mb_eregi_replace()
  11758. mb_eregi()
  11759. mb_get_info()
  11760. mb_http_input()
  11761. mb_http_output()
  11762. mb_internal_encoding()
  11763. mb_language()
  11764. mb_output_handler()
  11765. mb_parse_str()
  11766. mb_preferred_mime_name()
  11767. mb_regex_encoding()
  11768. mb_regex_set_options()
  11769. mb_send_mail()
  11770. mb_split()
  11771. mb_strcut()
  11772. mb_strimwidth()
  11773. mb_strlen()
  11774. mb_strpos()
  11775. mb_strrpos()
  11776. mb_strtolower()
  11777. mb_strtoupper()
  11778. mb_strwidth()
  11779. mb_substitute_character()
  11780. mb_substr_count()
  11781. mb_substr()
  11782. mcal_append_event()
  11783. mcal_close()
  11784. mcal_create_calendar()
  11785. mcal_date_compare()
  11786. mcal_date_valid()
  11787. mcal_day_of_week()
  11788. mcal_day_of_year()
  11789. mcal_days_in_month()
  11790. mcal_delete_calendar()
  11791. mcal_delete_event()
  11792. mcal_event_add_attribute()
  11793. mcal_event_init()
  11794. mcal_event_set_alarm()
  11795. mcal_event_set_category()
  11796. mcal_event_set_class()
  11797. mcal_event_set_description()
  11798. mcal_event_set_end()
  11799. mcal_event_set_recur_daily()
  11800. mcal_event_set_recur_monthly_mday()
  11801. mcal_event_set_recur_monthly_wday()
  11802. mcal_event_set_recur_none()
  11803. mcal_event_set_recur_weekly()
  11804. mcal_event_set_recur_yearly()
  11805. mcal_event_set_start()
  11806. mcal_event_set_title()
  11807. mcal_expunge()
  11808. mcal_fetch_current_stream_event()
  11809. mcal_fetch_event()
  11810. mcal_is_leap_year()
  11811. mcal_list_alarms()
  11812. mcal_list_events()
  11813. mcal_next_recurrence()
  11814. mcal_open()
  11815. mcal_popen()
  11816. mcal_rename_calendar()
  11817. mcal_reopen()
  11818. mcal_snooze()
  11819. mcal_store_event()
  11820. mcal_time_valid()
  11821. mcal_week_of_year()
  11822. mcrypt_cbc()
  11823. mcrypt_cfb()
  11824. mcrypt_create_iv()
  11825. mcrypt_decrypt()
  11826. mcrypt_ecb()
  11827. mcrypt_enc_get_algorithms_name()
  11828. mcrypt_enc_get_block_size()
  11829. mcrypt_enc_get_iv_size()
  11830. mcrypt_enc_get_key_size()
  11831. mcrypt_enc_get_modes_name()
  11832. mcrypt_enc_get_supported_key_sizes()
  11833. mcrypt_enc_is_block_algorithm_mode()
  11834. mcrypt_enc_is_block_algorithm()
  11835. mcrypt_enc_is_block_mode()
  11836. mcrypt_enc_self_test()
  11837. mcrypt_encrypt()
  11838. mcrypt_generic_deinit()
  11839. mcrypt_generic_end()
  11840. mcrypt_generic_init()
  11841. mcrypt_generic()
  11842. mcrypt_get_block_size()
  11843. mcrypt_get_cipher_name()
  11844. mcrypt_get_iv_size()
  11845. mcrypt_get_key_size()
  11846. mcrypt_list_algorithms()
  11847. mcrypt_list_modes()
  11848. mcrypt_module_close()
  11849. mcrypt_module_get_algo_block_size()
  11850. mcrypt_module_get_algo_key_size()
  11851. mcrypt_module_get_supported_key_sizes()
  11852. mcrypt_module_is_block_algorithm_mode()
  11853. mcrypt_module_is_block_algorithm()
  11854. mcrypt_module_is_block_mode()
  11855. mcrypt_module_open()
  11856. mcrypt_module_self_test()
  11857. mcrypt_ofb()
  11858. mdecrypt_generic()
  11859. mcve_adduser()
  11860. mcve_adduserarg()
  11861. mcve_bt()
  11862. mcve_checkstatus()
  11863. mcve_chkpwd()
  11864. mcve_chngpwd()
  11865. mcve_completeauthorizations()
  11866. mcve_connect()
  11867. mcve_connectionerror()
  11868. mcve_deleteresponse()
  11869. mcve_deletetrans()
  11870. mcve_deleteusersetup()
  11871. mcve_deluser()
  11872. mcve_destroyconn()
  11873. mcve_destroyengine()
  11874. mcve_disableuser()
  11875. mcve_edituser()
  11876. mcve_enableuser()
  11877. mcve_force()
  11878. mcve_getcell()
  11879. mcve_getcellbynum()
  11880. mcve_getcommadelimited()
  11881. mcve_getheader()
  11882. mcve_getuserarg()
  11883. mcve_getuserparam()
  11884. mcve_gft()
  11885. mcve_gl()
  11886. mcve_gut()
  11887. mcve_initconn()
  11888. mcve_initengine()
  11889. mcve_initusersetup()
  11890. mcve_iscommadelimited()
  11891. mcve_liststats()
  11892. mcve_listusers()
  11893. mcve_maxconntimeout()
  11894. mcve_monitor()
  11895. mcve_numcolumns()
  11896. mcve_numrows()
  11897. mcve_override()
  11898. mcve_parsecommadelimited()
  11899. mcve_ping()
  11900. mcve_preauth()
  11901. mcve_preauthcompletion()
  11902. mcve_qc()
  11903. mcve_responseparam()
  11904. mcve_return()
  11905. mcve_returncode()
  11906. mcve_returnstatus()
  11907. mcve_sale()
  11908. mcve_setblocking()
  11909. mcve_setdropfile()
  11910. mcve_setip()
  11911. mcve_setssl_files()
  11912. mcve_setssl()
  11913. mcve_settimeout()
  11914. mcve_settle()
  11915. mcve_text_avs()
  11916. mcve_text_code()
  11917. mcve_text_cv()
  11918. mcve_transactionauth()
  11919. mcve_transactionavs()
  11920. mcve_transactionbatch()
  11921. mcve_transactioncv()
  11922. mcve_transactionid()
  11923. mcve_transactionitem()
  11924. mcve_transactionssent()
  11925. mcve_transactiontext()
  11926. mcve_transinqueue()
  11927. mcve_transnew()
  11928. mcve_transparam()
  11929. mcve_transsend()
  11930. mcve_ub()
  11931. mcve_uwait()
  11932. mcve_verifyconnection()
  11933. mcve_verifysslcert()
  11934. mcve_void()
  11935. mhash_count()
  11936. mhash_get_block_size()
  11937. mhash_get_hash_name()
  11938. mhash_keygen_s2k()
  11939. mhash()
  11940. mime_content_type()
  11941. mssql_bind()
  11942. mssql_close()
  11943. mssql_connect()
  11944. mssql_data_seek()
  11945. mssql_execute()
  11946. mssql_fetch_array()
  11947. mssql_fetch_assoc()
  11948. mssql_fetch_batch()
  11949. mssql_fetch_field()
  11950. mssql_fetch_object()
  11951. mssql_fetch_row()
  11952. mssql_field_length()
  11953. mssql_field_name()
  11954. mssql_field_seek()
  11955. mssql_field_type()
  11956. mssql_free_result()
  11957. mssql_free_statement()
  11958. mssql_get_last_message()
  11959. mssql_guid_string()
  11960. mssql_init()
  11961. mssql_min_error_severity()
  11962. mssql_min_message_severity()
  11963. mssql_next_result()
  11964. mssql_num_fields()
  11965. mssql_num_rows()
  11966. mssql_pconnect()
  11967. mssql_query()
  11968. mssql_result()
  11969. mssql_rows_affected()
  11970. mssql_select_db()
  11971. ming_setcubicthreshold()
  11972. ming_setscale()
  11973. ming_useswfversion()
  11974. SWFAction()
  11975. SWFBitmap->getHeight()
  11976. SWFBitmap->getWidth()
  11977. SWFBitmap()
  11978. swfbutton_keypress()
  11979. SWFbutton->addAction()
  11980. SWFbutton->addShape()
  11981. SWFbutton->setAction()
  11982. SWFbutton->setdown()
  11983. SWFbutton->setHit()
  11984. SWFbutton->setOver()
  11985. SWFbutton->setUp()
  11986. SWFbutton()
  11987. SWFDisplayItem->addColor()
  11988. SWFDisplayItem->move()
  11989. SWFDisplayItem->moveTo()
  11990. SWFDisplayItem->multColor()
  11991. SWFDisplayItem->remove()
  11992. SWFDisplayItem->Rotate()
  11993. SWFDisplayItem->rotateTo()
  11994. SWFDisplayItem->scale()
  11995. SWFDisplayItem->scaleTo()
  11996. SWFDisplayItem->setDepth()
  11997. SWFDisplayItem->setName()
  11998. SWFDisplayItem->setRatio()
  11999. SWFDisplayItem->skewX()
  12000. SWFDisplayItem->skewXTo()
  12001. SWFDisplayItem->skewY()
  12002. SWFDisplayItem->skewYTo()
  12003. SWFDisplayItem()
  12004. SWFFill->moveTo()
  12005. SWFFill->rotateTo()
  12006. SWFFill->scaleTo()
  12007. SWFFill->skewXTo()
  12008. SWFFill->skewYTo()
  12009. SWFFill()
  12010. swffont->getwidth()
  12011. SWFFont()
  12012. SWFGradient->addEntry()
  12013. SWFGradient()
  12014. SWFMorph->getshape1()
  12015. SWFMorph->getshape2()
  12016. SWFMorph()
  12017. SWFMovie->add()
  12018. SWFMovie->nextframe()
  12019. SWFMovie->output()
  12020. swfmovie->remove()
  12021. SWFMovie->save()
  12022. SWFMovie->setbackground()
  12023. SWFMovie->setdimension()
  12024. SWFMovie->setframes()
  12025. SWFMovie->setrate()
  12026. SWFMovie->streammp3()
  12027. SWFMovie()
  12028. SWFShape->addFill()
  12029. SWFShape->drawCurve()
  12030. SWFShape->drawCurveTo()
  12031. SWFShape->drawLine()
  12032. SWFShape->drawLineTo()
  12033. SWFShape->movePen()
  12034. SWFShape->movePenTo()
  12035. SWFShape->setLeftFill()
  12036. SWFShape->setLine()
  12037. SWFShape->setRightFill()
  12038. SWFShape()
  12039. swfsprite->add()
  12040. SWFSprite->nextframe()
  12041. SWFSprite->remove()
  12042. SWFSprite->setframes()
  12043. SWFSprite()
  12044. SWFText->addString()
  12045. SWFText->getWidth()
  12046. SWFText->moveTo()
  12047. SWFText->setColor()
  12048. SWFText->setFont()
  12049. SWFText->setHeight()
  12050. SWFText->setSpacing()
  12051. SWFText()
  12052. SWFTextField->addstring()
  12053. SWFTextField->align()
  12054. SWFTextField->setbounds()
  12055. SWFTextField->setcolor()
  12056. SWFTextField->setFont()
  12057. SWFTextField->setHeight()
  12058. SWFTextField->setindentation()
  12059. SWFTextField->setLeftMargin()
  12060. SWFTextField->setLineSpacing()
  12061. SWFTextField->setMargins()
  12062. SWFTextField->setname()
  12063. SWFTextField->setrightMargin()
  12064. SWFTextField()
  12065. connection_aborted()
  12066. connection_status()
  12067. connection_timeout()
  12068. constant()
  12069. define()
  12070. defined()
  12071. die()
  12072. eval()
  12073. exit()
  12074. get_browser()
  12075. highlight_file()
  12076. highlight_string()
  12077. ignore_user_abort()
  12078. pack()
  12079. show_source()
  12080. sleep()
  12081. uniqid()
  12082. unpack()
  12083. usleep()
  12084. udm_add_search_limit()
  12085. udm_alloc_agent()
  12086. udm_api_version()
  12087. udm_cat_list()
  12088. udm_cat_path()
  12089. udm_check_charset()
  12090. udm_check_stored()
  12091. udm_clear_search_limits()
  12092. udm_close_stored()
  12093. udm_crc32()
  12094. udm_errno()
  12095. udm_error()
  12096. udm_find()
  12097. udm_free_agent()
  12098. udm_free_ispell_data()
  12099. udm_free_res()
  12100. udm_get_doc_count()
  12101. udm_get_res_field()
  12102. udm_get_res_param()
  12103. udm_load_ispell_data()
  12104. udm_open_stored()
  12105. udm_set_agent_param()
  12106. msql_affected_rows()
  12107. msql_close()
  12108. msql_connect()
  12109. msql_create_db()
  12110. msql_createdb()
  12111. msql_data_seek()
  12112. msql_dbname()
  12113. msql_drop_db()
  12114. msql_dropdb()
  12115. msql_error()
  12116. msql_fetch_array()
  12117. msql_fetch_field()
  12118. msql_fetch_object()
  12119. msql_fetch_row()
  12120. msql_field_seek()
  12121. msql_fieldflags()
  12122. msql_fieldlen()
  12123. msql_fieldname()
  12124. msql_fieldtable()
  12125. msql_fieldtype()
  12126. msql_free_result()
  12127. msql_freeresult()
  12128. msql_list_dbs()
  12129. msql_list_fields()
  12130. msql_list_tables()
  12131. msql_listdbs()
  12132. msql_listfields()
  12133. msql_listtables()
  12134. msql_num_fields()
  12135. msql_num_rows()
  12136. msql_numfields()
  12137. msql_numrows()
  12138. msql_pconnect()
  12139. msql_query()
  12140. msql_regcase()
  12141. msql_result()
  12142. msql_select_db()
  12143. msql_selectdb()
  12144. msql_tablename()
  12145. msql()
  12146. mysql_affected_rows()
  12147. mysql_change_user()
  12148. mysql_client_encoding()
  12149. mysql_close()
  12150. mysql_connect()
  12151. mysql_create_db()
  12152. mysql_data_seek()
  12153. mysql_db_name()
  12154. mysql_db_query()
  12155. mysql_drop_db()
  12156. mysql_errno()
  12157. mysql_error()
  12158. mysql_escape_string()
  12159. mysql_fetch_array()
  12160. mysql_fetch_assoc()
  12161. mysql_fetch_field()
  12162. mysql_fetch_lengths()
  12163. mysql_fetch_object()
  12164. mysql_fetch_row()
  12165. mysql_field_flags()
  12166. mysql_field_len()
  12167. mysql_field_name()
  12168. mysql_field_seek()
  12169. mysql_field_table()
  12170. mysql_field_type()
  12171. mysql_free_result()
  12172. mysql_get_client_info()
  12173. mysql_get_host_info()
  12174. mysql_get_proto_info()
  12175. mysql_get_server_info()
  12176. mysql_info()
  12177. mysql_insert_id()
  12178. mysql_list_dbs()
  12179. mysql_list_fields()
  12180. mysql_list_processes()
  12181. mysql_list_tables()
  12182. mysql_num_fields()
  12183. mysql_num_rows()
  12184. mysql_pconnect()
  12185. mysql_ping()
  12186. mysql_query()
  12187. mysql_real_escape_string()
  12188. mysql_result()
  12189. mysql_select_db()
  12190. mysql_stat()
  12191. mysql_tablename()
  12192. mysql_thread_id()
  12193. mysql_unbuffered_query()
  12194. mysqli_affected_rows()
  12195. mysqli_autocommit()
  12196. mysqli_bind_param()
  12197. mysqli_bind_result()
  12198. mysqli_change_user()
  12199. mysqli_character_set_name()
  12200. mysqli_close()
  12201. mysqli_commit()
  12202. mysqli_connect()
  12203. mysqli_data_seek()
  12204. mysqli_debug()
  12205. mysqli_disable_reads_from_master()
  12206. mysqli_disable_rpl_parse()
  12207. mysqli_dump_debug_info()
  12208. mysqli_enable_reads_from_master()
  12209. mysqli_enable_rpl_parse()
  12210. mysqli_errno()
  12211. mysqli_error()
  12212. mysqli_execute()
  12213. mysqli_fetch_array()
  12214. mysqli_fetch_assoc()
  12215. mysqli_fetch_field_direct()
  12216. mysqli_fetch_field()
  12217. mysqli_fetch_fields()
  12218. mysqli_fetch_lengths()
  12219. mysqli_fetch_object()
  12220. mysqli_fetch_row()
  12221. mysqli_fetch()
  12222. mysqli_field_count()
  12223. mysqli_field_seek()
  12224. mysqli_field_tell()
  12225. mysqli_free_result()
  12226. mysqli_get_client_info()
  12227. mysqli_get_host_info()
  12228. mysqli_get_proto_info()
  12229. mysqli_get_server_info()
  12230. mysqli_get_server_version()
  12231. mysqli_info()
  12232. mysqli_init()
  12233. mysqli_insert_id()
  12234. mysqli_kill()
  12235. mysqli_master_query()
  12236. mysqli_num_fields()
  12237. mysqli_num_rows()
  12238. mysqli_options()
  12239. mysqli_param_count()
  12240. mysqli_ping()
  12241. mysqli_prepare_result()
  12242. mysqli_prepare()
  12243. mysqli_profiler()
  12244. mysqli_query()
  12245. mysqli_read_query_result()
  12246. mysqli_real_connect()
  12247. mysqli_real_escape_string()
  12248. mysqli_real_query()
  12249. mysqli_reload()
  12250. mysqli_rollback()
  12251. mysqli_rpl_parse_enabled()
  12252. mysqli_rpl_probe()
  12253. mysqli_rpl_query_type()
  12254. mysqli_select_db()
  12255. mysqli_send_long_data()
  12256. mysqli_send_query()
  12257. mysqli_slave_query()
  12258. mysqli_ssl_set()
  12259. mysqli_stat()
  12260. mysqli_stmt_affected_rows()
  12261. mysqli_stmt_close()
  12262. mysqli_stmt_errno()
  12263. mysqli_stmt_error()
  12264. mysqli_stmt_store_result()
  12265. mysqli_store_result()
  12266. mysqli_thread_id()
  12267. mysqli_thread_safe()
  12268. mysqli_use_result()
  12269. mysqli_warning_count()
  12270. msession_connect()
  12271. msession_count()
  12272. msession_create()
  12273. msession_destroy()
  12274. msession_disconnect()
  12275. msession_find()
  12276. msession_get_array()
  12277. msession_get()
  12278. msession_getdata()
  12279. msession_inc()
  12280. msession_list()
  12281. msession_listvar()
  12282. msession_lock()
  12283. msession_plugin()
  12284. msession_randstr()
  12285. msession_set_array()
  12286. msession_set()
  12287. msession_setdata()
  12288. msession_timeout()
  12289. msession_uniq()
  12290. msession_unlock()
  12291. muscat_close()
  12292. muscat_get()
  12293. muscat_give()
  12294. muscat_setup_net()
  12295. muscat_setup()
  12296. checkdnsrr()
  12297. closelog()
  12298. debugger_off()
  12299. debugger_on()
  12300. define_syslog_variables()
  12301. dns_check_record()
  12302. dns_get_mx()
  12303. dns_get_record()
  12304. fsockopen()
  12305. gethostbyaddr()
  12306. gethostbyname()
  12307. gethostbynamel()
  12308. getmxrr()
  12309. getprotobyname()
  12310. getprotobynumber()
  12311. getservbyname()
  12312. getservbyport()
  12313. ip2long()
  12314. long2ip()
  12315. openlog()
  12316. pfsockopen()
  12317. socket_get_status()
  12318. socket_set_blocking()
  12319. socket_set_timeout()
  12320. syslog()
  12321. ncurses_addch()
  12322. ncurses_addchnstr()
  12323. ncurses_addchstr()
  12324. ncurses_addnstr()
  12325. ncurses_addstr()
  12326. ncurses_assume_default_colors()
  12327. ncurses_attroff()
  12328. ncurses_attron()
  12329. ncurses_attrset()
  12330. ncurses_baudrate()
  12331. ncurses_beep()
  12332. ncurses_bkgd()
  12333. ncurses_bkgdset()
  12334. ncurses_border()
  12335. ncurses_bottom_panel()
  12336. ncurses_can_change_color()
  12337. ncurses_cbreak()
  12338. ncurses_clear()
  12339. ncurses_clrtobot()
  12340. ncurses_clrtoeol()
  12341. ncurses_color_content()
  12342. ncurses_color_set()
  12343. ncurses_curs_set()
  12344. ncurses_def_prog_mode()
  12345. ncurses_def_shell_mode()
  12346. ncurses_define_key()
  12347. ncurses_del_panel()
  12348. ncurses_delay_output()
  12349. ncurses_delch()
  12350. ncurses_deleteln()
  12351. ncurses_delwin()
  12352. ncurses_doupdate()
  12353. ncurses_echo()
  12354. ncurses_echochar()
  12355. ncurses_end()
  12356. ncurses_erase()
  12357. ncurses_erasechar()
  12358. ncurses_filter()
  12359. ncurses_flash()
  12360. ncurses_flushinp()
  12361. ncurses_getch()
  12362. ncurses_getmaxyx()
  12363. ncurses_getmouse()
  12364. ncurses_getyx()
  12365. ncurses_halfdelay()
  12366. ncurses_has_colors()
  12367. ncurses_has_ic()
  12368. ncurses_has_il()
  12369. ncurses_has_key()
  12370. ncurses_hide_panel()
  12371. ncurses_hline()
  12372. ncurses_inch()
  12373. ncurses_init_color()
  12374. ncurses_init_pair()
  12375. ncurses_init()
  12376. ncurses_insch()
  12377. ncurses_insdelln()
  12378. ncurses_insertln()
  12379. ncurses_insstr()
  12380. ncurses_instr()
  12381. ncurses_isendwin()
  12382. ncurses_keyok()
  12383. ncurses_keypad()
  12384. ncurses_killchar()
  12385. ncurses_longname()
  12386. ncurses_meta()
  12387. ncurses_mouse_trafo()
  12388. ncurses_mouseinterval()
  12389. ncurses_mousemask()
  12390. ncurses_move_panel()
  12391. ncurses_move()
  12392. ncurses_mvaddch()
  12393. ncurses_mvaddchnstr()
  12394. ncurses_mvaddchstr()
  12395. ncurses_mvaddnstr()
  12396. ncurses_mvaddstr()
  12397. ncurses_mvcur()
  12398. ncurses_mvdelch()
  12399. ncurses_mvgetch()
  12400. ncurses_mvhline()
  12401. ncurses_mvinch()
  12402. ncurses_mvvline()
  12403. ncurses_mvwaddstr()
  12404. ncurses_napms()
  12405. ncurses_new_panel()
  12406. ncurses_newpad()
  12407. ncurses_newwin()
  12408. ncurses_nl()
  12409. ncurses_nocbreak()
  12410. ncurses_noecho()
  12411. ncurses_nonl()
  12412. ncurses_noqiflush()
  12413. ncurses_noraw()
  12414. ncurses_pair_content()
  12415. ncurses_panel_above()
  12416. ncurses_panel_below()
  12417. ncurses_panel_window()
  12418. ncurses_pnoutrefresh()
  12419. ncurses_prefresh()
  12420. ncurses_putp()
  12421. ncurses_qiflush()
  12422. ncurses_raw()
  12423. ncurses_refresh()
  12424. ncurses_replace_panel()
  12425. ncurses_reset_prog_mode()
  12426. ncurses_reset_shell_mode()
  12427. ncurses_resetty()
  12428. ncurses_savetty()
  12429. ncurses_scr_dump()
  12430. ncurses_scr_init()
  12431. ncurses_scr_restore()
  12432. ncurses_scr_set()
  12433. ncurses_scrl()
  12434. ncurses_show_panel()
  12435. ncurses_slk_attr()
  12436. ncurses_slk_attroff()
  12437. ncurses_slk_attron()
  12438. ncurses_slk_attrset()
  12439. ncurses_slk_clear()
  12440. ncurses_slk_color()
  12441. ncurses_slk_init()
  12442. ncurses_slk_noutrefresh()
  12443. ncurses_slk_refresh()
  12444. ncurses_slk_restore()
  12445. ncurses_slk_set()
  12446. ncurses_slk_touch()
  12447. ncurses_standend()
  12448. ncurses_standout()
  12449. ncurses_start_color()
  12450. ncurses_termattrs()
  12451. ncurses_termname()
  12452. ncurses_timeout()
  12453. ncurses_top_panel()
  12454. ncurses_typeahead()
  12455. ncurses_ungetch()
  12456. ncurses_ungetmouse()
  12457. ncurses_update_panels()
  12458. ncurses_use_default_colors()
  12459. ncurses_use_env()
  12460. ncurses_use_extended_names()
  12461. ncurses_vidattr()
  12462. ncurses_vline()
  12463. ncurses_waddch()
  12464. ncurses_waddstr()
  12465. ncurses_wattroff()
  12466. ncurses_wattron()
  12467. ncurses_wattrset()
  12468. ncurses_wborder()
  12469. ncurses_wclear()
  12470. ncurses_wcolor_set()
  12471. ncurses_werase()
  12472. ncurses_wgetch()
  12473. ncurses_whline()
  12474. ncurses_wmouse_trafo()
  12475. ncurses_wmove()
  12476. ncurses_wnoutrefresh()
  12477. ncurses_wrefresh()
  12478. ncurses_wstandend()
  12479. ncurses_wstandout()
  12480. ncurses_wvline()
  12481. notes_body()
  12482. notes_copy_db()
  12483. notes_create_db()
  12484. notes_create_note()
  12485. notes_drop_db()
  12486. notes_find_note()
  12487. notes_header_info()
  12488. notes_list_msgs()
  12489. notes_mark_read()
  12490. notes_mark_unread()
  12491. notes_nav_create()
  12492. notes_search()
  12493. notes_unread()
  12494. notes_version()
  12495. nsapi_request_headers()
  12496. nsapi_response_headers()
  12497. nsapi_virtual()
  12498. odbc_autocommit()
  12499. odbc_binmode()
  12500. odbc_close_all()
  12501. odbc_close()
  12502. odbc_columnprivileges()
  12503. odbc_columns()
  12504. odbc_commit()
  12505. odbc_connect()
  12506. odbc_cursor()
  12507. odbc_data_source()
  12508. odbc_do()
  12509. odbc_error()
  12510. odbc_errormsg()
  12511. odbc_exec()
  12512. odbc_execute()
  12513. odbc_fetch_array()
  12514. odbc_fetch_into()
  12515. odbc_fetch_object()
  12516. odbc_fetch_row()
  12517. odbc_field_len()
  12518. odbc_field_name()
  12519. odbc_field_num()
  12520. odbc_field_precision()
  12521. odbc_field_scale()
  12522. odbc_field_type()
  12523. odbc_foreignkeys()
  12524. odbc_free_result()
  12525. odbc_gettypeinfo()
  12526. odbc_longreadlen()
  12527. odbc_next_result()
  12528. odbc_num_fields()
  12529. odbc_num_rows()
  12530. odbc_pconnect()
  12531. odbc_prepare()
  12532. odbc_primarykeys()
  12533. odbc_procedurecolumns()
  12534. odbc_procedures()
  12535. odbc_result_all()
  12536. odbc_result()
  12537. odbc_rollback()
  12538. odbc_setoption()
  12539. odbc_specialcolumns()
  12540. odbc_statistics()
  12541. odbc_tableprivileges()
  12542. odbc_tables()
  12543. aggregate_info()
  12544. aggregate_methods_by_list()
  12545. aggregate_methods_by_regexp()
  12546. aggregate_methods()
  12547. aggregate_properties_by_list()
  12548. aggregate_properties_by_regexp()
  12549. aggregate_properties()
  12550. aggregate()
  12551. aggregation_info()
  12552. deaggregate()
  12553. ocibindbyname()
  12554. ocicancel()
  12555. ocicloselob()
  12556. ocicollappend()
  12557. ocicollassign()
  12558. ocicollassignelem()
  12559. ocicollgetelem()
  12560. ocicollmax()
  12561. ocicollsize()
  12562. ocicolltrim()
  12563. ocicolumnisnull()
  12564. ocicolumnname()
  12565. ocicolumnprecision()
  12566. ocicolumnscale()
  12567. ocicolumnsize()
  12568. ocicolumntype()
  12569. ocicolumntyperaw()
  12570. ocicommit()
  12571. ocidefinebyname()
  12572. ocierror()
  12573. ociexecute()
  12574. ocifetch()
  12575. ocifetchinto()
  12576. ocifetchstatement()
  12577. ocifreecollection()
  12578. ocifreecursor()
  12579. ocifreedesc()
  12580. ocifreestatement()
  12581. ociinternaldebug()
  12582. ociloadlob()
  12583. ocilogoff()
  12584. ocilogon()
  12585. ocinewcollection()
  12586. ocinewcursor()
  12587. ocinewdescriptor()
  12588. ocinlogon()
  12589. ocinumcols()
  12590. ociparse()
  12591. ociplogon()
  12592. ociresult()
  12593. ocirollback()
  12594. ocirowcount()
  12595. ocisavelob()
  12596. ocisavelobfile()
  12597. ociserverversion()
  12598. ocisetprefetch()
  12599. ocistatementtype()
  12600. ociwritelobtofile()
  12601. ociwritetemporarylob()
  12602. openssl_csr_export_to_file()
  12603. openssl_csr_export()
  12604. openssl_csr_new()
  12605. openssl_csr_sign()
  12606. openssl_error_string()
  12607. openssl_free_key()
  12608. openssl_get_privatekey()
  12609. openssl_get_publickey()
  12610. openssl_open()
  12611. openssl_pkcs7_decrypt()
  12612. openssl_pkcs7_encrypt()
  12613. openssl_pkcs7_sign()
  12614. openssl_pkcs7_verify()
  12615. openssl_pkey_export_to_file()
  12616. openssl_pkey_export()
  12617. openssl_pkey_get_private()
  12618. openssl_pkey_get_public()
  12619. openssl_pkey_new()
  12620. openssl_private_decrypt()
  12621. openssl_private_encrypt()
  12622. openssl_public_decrypt()
  12623. openssl_public_encrypt()
  12624. openssl_seal()
  12625. openssl_sign()
  12626. openssl_verify()
  12627. openssl_x509_check_private_key()
  12628. openssl_x509_checkpurpose()
  12629. openssl_x509_export_to_file()
  12630. openssl_x509_export()
  12631. openssl_x509_free()
  12632. openssl_x509_parse()
  12633. openssl_x509_read()
  12634. ora_bind()
  12635. ora_close()
  12636. ora_columnname()
  12637. ora_columnsize()
  12638. ora_columntype()
  12639. ora_commit()
  12640. ora_commitoff()
  12641. ora_commiton()
  12642. ora_do()
  12643. ora_error()
  12644. ora_errorcode()
  12645. ora_exec()
  12646. ora_fetch_into()
  12647. ora_fetch()
  12648. ora_getcolumn()
  12649. ora_logoff()
  12650. ora_logon()
  12651. ora_numcols()
  12652. ora_numrows()
  12653. ora_open()
  12654. ora_parse()
  12655. ora_plogon()
  12656. ora_rollback()
  12657. ovrimos_close()
  12658. ovrimos_commit()
  12659. ovrimos_connect()
  12660. ovrimos_cursor()
  12661. ovrimos_exec()
  12662. ovrimos_execute()
  12663. ovrimos_fetch_into()
  12664. ovrimos_fetch_row()
  12665. ovrimos_field_len()
  12666. ovrimos_field_name()
  12667. ovrimos_field_num()
  12668. ovrimos_field_type()
  12669. ovrimos_free_result()
  12670. ovrimos_longreadlen()
  12671. ovrimos_num_fields()
  12672. ovrimos_num_rows()
  12673. ovrimos_prepare()
  12674. ovrimos_result_all()
  12675. ovrimos_result()
  12676. ovrimos_rollback()
  12677. flush()
  12678. ob_clean()
  12679. ob_end_clean()
  12680. ob_end_flush()
  12681. ob_flush()
  12682. ob_get_clean()
  12683. ob_get_contents()
  12684. ob_get_length()
  12685. ob_get_level()
  12686. ob_get_status()
  12687. ob_gzhandler()
  12688. ob_implicit_flush()
  12689. ob_start()
  12690. overload()
  12691. pdf_add_annotation()
  12692. pdf_add_bookmark()
  12693. pdf_add_launchlink()
  12694. pdf_add_locallink()
  12695. pdf_add_note()
  12696. pdf_add_outline()
  12697. pdf_add_pdflink()
  12698. pdf_add_thumbnail()
  12699. pdf_add_weblink()
  12700. pdf_arc()
  12701. pdf_arcn()
  12702. pdf_attach_file()
  12703. pdf_begin_page()
  12704. pdf_begin_pattern()
  12705. pdf_begin_template()
  12706. pdf_circle()
  12707. pdf_clip()
  12708. pdf_close_image()
  12709. pdf_close_pdi_page()
  12710. pdf_close_pdi()
  12711. pdf_close()
  12712. pdf_closepath_fill_stroke()
  12713. pdf_closepath_stroke()
  12714. pdf_closepath()
  12715. pdf_concat()
  12716. pdf_continue_text()
  12717. pdf_curveto()
  12718. pdf_delete()
  12719. pdf_end_page()
  12720. pdf_end_pattern()
  12721. pdf_end_template()
  12722. pdf_endpath()
  12723. pdf_fill_stroke()
  12724. pdf_fill()
  12725. pdf_findfont()
  12726. pdf_get_buffer()
  12727. pdf_get_font()
  12728. pdf_get_fontname()
  12729. pdf_get_fontsize()
  12730. pdf_get_image_height()
  12731. pdf_get_image_width()
  12732. pdf_get_majorversion()
  12733. pdf_get_minorversion()
  12734. pdf_get_parameter()
  12735. pdf_get_pdi_parameter()
  12736. pdf_get_pdi_value()
  12737. pdf_get_value()
  12738. pdf_initgraphics()
  12739. pdf_lineto()
  12740. pdf_makespotcolor()
  12741. pdf_moveto()
  12742. pdf_new()
  12743. pdf_open_CCITT()
  12744. pdf_open_file()
  12745. pdf_open_gif()
  12746. pdf_open_image_file()
  12747. pdf_open_image()
  12748. pdf_open_jpeg()
  12749. pdf_open_memory_image()
  12750. pdf_open_pdi_page()
  12751. pdf_open_pdi()
  12752. pdf_open_png()
  12753. pdf_open_tiff()
  12754. pdf_open()
  12755. pdf_place_image()
  12756. pdf_place_pdi_page()
  12757. pdf_rect()
  12758. pdf_restore()
  12759. pdf_rotate()
  12760. pdf_save()
  12761. pdf_scale()
  12762. pdf_set_border_color()
  12763. pdf_set_border_dash()
  12764. pdf_set_border_style()
  12765. pdf_set_char_spacing()
  12766. pdf_set_duration()
  12767. pdf_set_font()
  12768. pdf_set_horiz_scaling()
  12769. pdf_set_info_author()
  12770. pdf_set_info_creator()
  12771. pdf_set_info_keywords()
  12772. pdf_set_info_subject()
  12773. pdf_set_info_title()
  12774. pdf_set_info()
  12775. pdf_set_leading()
  12776. pdf_set_parameter()
  12777. pdf_set_text_matrix()
  12778. pdf_set_text_pos()
  12779. pdf_set_text_rendering()
  12780. pdf_set_text_rise()
  12781. pdf_set_value()
  12782. pdf_set_word_spacing()
  12783. pdf_setcolor()
  12784. pdf_setdash()
  12785. pdf_setflat()
  12786. pdf_setfont()
  12787. pdf_setgray_fill()
  12788. pdf_setgray_stroke()
  12789. pdf_setgray()
  12790. pdf_setlinecap()
  12791. pdf_setlinejoin()
  12792. pdf_setlinewidth()
  12793. pdf_setmatrix()
  12794. pdf_setmiterlimit()
  12795. pdf_setpolydash()
  12796. pdf_setrgbcolor_fill()
  12797. pdf_setrgbcolor_stroke()
  12798. pdf_setrgbcolor()
  12799. pdf_show_boxed()
  12800. pdf_show_xy()
  12801. pdf_show()
  12802. pdf_skew()
  12803. pdf_stringwidth()
  12804. pdf_stroke()
  12805. pdf_translate()
  12806. pfpro_cleanup()
  12807. pfpro_init()
  12808. pfpro_process_raw()
  12809. pfpro_process()
  12810. pfpro_version()
  12811. assert_options()
  12812. assert()
  12813. dl()
  12814. extension_loaded()
  12815. get_cfg_var()
  12816. get_current_user()
  12817. get_defined_constants()
  12818. get_extension_funcs()
  12819. get_include_path()
  12820. get_included_files()
  12821. get_loaded_extensions()
  12822. get_magic_quotes_gpc()
  12823. get_magic_quotes_runtime()
  12824. get_required_files()
  12825. getenv()
  12826. getlastmod()
  12827. getmygid()
  12828. getmyinode()
  12829. getmypid()
  12830. getmyuid()
  12831. getopt()
  12832. getrusage()
  12833. ini_alter()
  12834. ini_get_all()
  12835. ini_get()
  12836. ini_restore()
  12837. ini_set()
  12838. main()
  12839. memory_get_usage()
  12840. php_ini_scanned_files()
  12841. php_logo_guid()
  12842. php_sapi_name()
  12843. php_uname()
  12844. phpcredits()
  12845. phpinfo()
  12846. phpversion()
  12847. putenv()
  12848. restore_include_path()
  12849. set_include_path()
  12850. set_magic_quotes_runtime()
  12851. set_time_limit()
  12852. version_compare()
  12853. zend_logo_guid()
  12854. zend_version()
  12855. posix_ctermid()
  12856. posix_get_last_error()
  12857. posix_getcwd()
  12858. posix_getegid()
  12859. posix_geteuid()
  12860. posix_getgid()
  12861. posix_getgrgid()
  12862. posix_getgrnam()
  12863. posix_getgroups()
  12864. posix_getlogin()
  12865. posix_getpgid()
  12866. posix_getpgrp()
  12867. posix_getpid()
  12868. posix_getppid()
  12869. posix_getpwnam()
  12870. posix_getpwuid()
  12871. posix_getrlimit()
  12872. posix_getsid()
  12873. posix_getuid()
  12874. posix_isatty()
  12875. posix_kill()
  12876. posix_mkfifo()
  12877. posix_setegid()
  12878. posix_seteuid()
  12879. posix_setgid()
  12880. posix_setpgid()
  12881. posix_setsid()
  12882. posix_setuid()
  12883. posix_strerror()
  12884. posix_times()
  12885. posix_ttyname()
  12886. posix_uname()
  12887. pg_affected_rows()
  12888. pg_cancel_query()
  12889. pg_client_encoding()
  12890. pg_close()
  12891. pg_connect()
  12892. pg_connection_busy()
  12893. pg_connection_reset()
  12894. pg_connection_status()
  12895. pg_convert()
  12896. pg_copy_from()
  12897. pg_copy_to()
  12898. pg_dbname()
  12899. pg_delete()
  12900. pg_end_copy()
  12901. pg_escape_bytea()
  12902. pg_escape_string()
  12903. pg_fetch_all()
  12904. pg_fetch_array()
  12905. pg_fetch_assoc()
  12906. pg_fetch_object()
  12907. pg_fetch_result()
  12908. pg_fetch_row()
  12909. pg_field_is_null()
  12910. pg_field_name()
  12911. pg_field_num()
  12912. pg_field_prtlen()
  12913. pg_field_size()
  12914. pg_field_type()
  12915. pg_free_result()
  12916. pg_get_notify()
  12917. pg_get_pid()
  12918. pg_get_result()
  12919. pg_host()
  12920. pg_insert()
  12921. pg_last_error()
  12922. pg_last_notice()
  12923. pg_last_oid()
  12924. pg_lo_close()
  12925. pg_lo_create()
  12926. pg_lo_export()
  12927. pg_lo_import()
  12928. pg_lo_open()
  12929. pg_lo_read_all()
  12930. pg_lo_read()
  12931. pg_lo_seek()
  12932. pg_lo_tell()
  12933. pg_lo_unlink()
  12934. pg_lo_write()
  12935. pg_meta_data()
  12936. pg_num_fields()
  12937. pg_num_rows()
  12938. pg_options()
  12939. pg_pconnect()
  12940. pg_ping()
  12941. pg_port()
  12942. pg_put_line()
  12943. pg_query()
  12944. pg_result_error()
  12945. pg_result_seek()
  12946. pg_result_status()
  12947. pg_select()
  12948. pg_send_query()
  12949. pg_set_client_encoding()
  12950. pg_trace()
  12951. pg_tty()
  12952. pg_unescape_bytea()
  12953. pg_untrace()
  12954. pg_update()
  12955. pcntl_exec()
  12956. pcntl_fork()
  12957. pcntl_signal()
  12958. pcntl_waitpid()
  12959. pcntl_wexitstatus()
  12960. pcntl_wifexited()
  12961. pcntl_wifsignaled()
  12962. pcntl_wifstopped()
  12963. pcntl_wstopsig()
  12964. pcntl_wtermsig()
  12965. escapeshellarg()
  12966. escapeshellcmd()
  12967. exec()
  12968. passthru()
  12969. proc_close()
  12970. proc_get_status()
  12971. proc_nice()
  12972. proc_open()
  12973. proc_terminate()
  12974. shell_exec()
  12975. system()
  12976. printer_abort()
  12977. printer_close()
  12978. printer_create_brush()
  12979. printer_create_dc()
  12980. printer_create_font()
  12981. printer_create_pen()
  12982. printer_delete_brush()
  12983. printer_delete_dc()
  12984. printer_delete_font()
  12985. printer_delete_pen()
  12986. printer_draw_bmp()
  12987. printer_draw_chord()
  12988. printer_draw_elipse()
  12989. printer_draw_line()
  12990. printer_draw_pie()
  12991. printer_draw_rectangle()
  12992. printer_draw_roundrect()
  12993. printer_draw_text()
  12994. printer_end_doc()
  12995. printer_end_page()
  12996. printer_get_option()
  12997. printer_list()
  12998. printer_logical_fontheight()
  12999. printer_open()
  13000. printer_select_brush()
  13001. printer_select_font()
  13002. printer_select_pen()
  13003. printer_set_option()
  13004. printer_start_doc()
  13005. printer_start_page()
  13006. printer_write()
  13007. pspell_add_to_personal()
  13008. pspell_add_to_session()
  13009. pspell_check()
  13010. pspell_clear_session()
  13011. pspell_config_create()
  13012. pspell_config_ignore()
  13013. pspell_config_mode()
  13014. pspell_config_personal()
  13015. pspell_config_repl()
  13016. pspell_config_runtogether()
  13017. pspell_config_save_repl()
  13018. pspell_new_config()
  13019. pspell_new_personal()
  13020. pspell_new()
  13021. pspell_save_wordlist()
  13022. pspell_store_replacement()
  13023. pspell_suggest()
  13024. readline_add_history()
  13025. readline_clear_history()
  13026. readline_completion_function()
  13027. readline_info()
  13028. readline_list_history()
  13029. readline_read_history()
  13030. readline_write_history()
  13031. readline()
  13032. recode_file()
  13033. recode_string()
  13034. recode()
  13035. Pattern Modifiers()
  13036. Pattern Syntax()
  13037. preg_grep()
  13038. preg_match_all()
  13039. preg_match()
  13040. preg_quote()
  13041. preg_replace_callback()
  13042. preg_replace()
  13043. preg_split()
  13044. qdom_error()
  13045. qdom_tree()
  13046. ereg_replace()
  13047. ereg()
  13048. eregi_replace()
  13049. eregi()
  13050. split()
  13051. spliti()
  13052. sql_regcase()
  13053. ftok()
  13054. msg_get_queue()
  13055. msg_receive()
  13056. msg_remove_queue()
  13057. msg_send()
  13058. msg_set_queue()
  13059. msg_stat_queue()
  13060. sem_acquire()
  13061. sem_get()
  13062. sem_release()
  13063. sem_remove()
  13064. shm_attach()
  13065. shm_detach()
  13066. shm_get_var()
  13067. shm_put_var()
  13068. shm_remove_var()
  13069. shm_remove()
  13070. sesam_affected_rows()
  13071. sesam_commit()
  13072. sesam_connect()
  13073. sesam_diagnostic()
  13074. sesam_disconnect()
  13075. sesam_errormsg()
  13076. sesam_execimm()
  13077. sesam_fetch_array()
  13078. sesam_fetch_result()
  13079. sesam_fetch_row()
  13080. sesam_field_array()
  13081. sesam_field_name()
  13082. sesam_free_result()
  13083. sesam_num_fields()
  13084. sesam_query()
  13085. sesam_rollback()
  13086. sesam_seek_row()
  13087. sesam_settransaction()
  13088. session_cache_expire()
  13089. session_cache_limiter()
  13090. session_decode()
  13091. session_destroy()
  13092. session_encode()
  13093. session_get_cookie_params()
  13094. session_id()
  13095. session_is_registered()
  13096. session_module_name()
  13097. session_name()
  13098. session_regenerate_id()
  13099. session_register()
  13100. session_save_path()
  13101. session_set_cookie_params()
  13102. session_set_save_handler()
  13103. session_start()
  13104. session_unregister()
  13105. session_unset()
  13106. session_write_close()
  13107. shmop_close()
  13108. shmop_delete()
  13109. shmop_open()
  13110. shmop_read()
  13111. shmop_size()
  13112. shmop_write()
  13113. sqlite_array_query()
  13114. sqlite_busy_timeout()
  13115. sqlite_changes()
  13116. sqlite_close()
  13117. sqlite_column()
  13118. sqlite_create_aggregate()
  13119. sqlite_create_function()
  13120. sqlite_current()
  13121. sqlite_error_string()
  13122. sqlite_escape_string()
  13123. sqlite_fetch_array()
  13124. sqlite_fetch_single()
  13125. sqlite_fetch_string()
  13126. sqlite_field_name()
  13127. sqlite_has_more()
  13128. sqlite_last_error()
  13129. sqlite_last_insert_rowid()
  13130. sqlite_libencoding()
  13131. sqlite_libversion()
  13132. sqlite_next()
  13133. sqlite_num_fields()
  13134. sqlite_num_rows()
  13135. sqlite_open()
  13136. sqlite_popen()
  13137. sqlite_query()
  13138. sqlite_rewind()
  13139. sqlite_seek()
  13140. sqlite_udf_decode_binary()
  13141. sqlite_udf_encode_binary()
  13142. sqlite_unbuffered_query()
  13143. swf_actiongeturl()
  13144. swf_actiongotoframe()
  13145. swf_actiongotolabel()
  13146. swf_actionnextframe()
  13147. swf_actionplay()
  13148. swf_actionprevframe()
  13149. swf_actionsettarget()
  13150. swf_actionstop()
  13151. swf_actiontogglequality()
  13152. swf_actionwaitforframe()
  13153. swf_addbuttonrecord()
  13154. swf_addcolor()
  13155. swf_closefile()
  13156. swf_definebitmap()
  13157. swf_definefont()
  13158. swf_defineline()
  13159. swf_definepoly()
  13160. swf_definerect()
  13161. swf_definetext()
  13162. swf_endbutton()
  13163. swf_enddoaction()
  13164. swf_endshape()
  13165. swf_endsymbol()
  13166. swf_fontsize()
  13167. swf_fontslant()
  13168. swf_fonttracking()
  13169. swf_getbitmapinfo()
  13170. swf_getfontinfo()
  13171. swf_getframe()
  13172. swf_labelframe()
  13173. swf_lookat()
  13174. swf_modifyobject()
  13175. swf_mulcolor()
  13176. swf_nextid()
  13177. swf_oncondition()
  13178. swf_openfile()
  13179. swf_ortho2()
  13180. swf_ortho()
  13181. swf_perspective()
  13182. swf_placeobject()
  13183. swf_polarview()
  13184. swf_popmatrix()
  13185. swf_posround()
  13186. swf_pushmatrix()
  13187. swf_removeobject()
  13188. swf_rotate()
  13189. swf_scale()
  13190. swf_setfont()
  13191. swf_setframe()
  13192. swf_shapearc()
  13193. swf_shapecurveto3()
  13194. swf_shapecurveto()
  13195. swf_shapefillbitmapclip()
  13196. swf_shapefillbitmaptile()
  13197. swf_shapefilloff()
  13198. swf_shapefillsolid()
  13199. swf_shapelinesolid()
  13200. swf_shapelineto()
  13201. swf_shapemoveto()
  13202. swf_showframe()
  13203. swf_startbutton()
  13204. swf_startdoaction()
  13205. swf_startshape()
  13206. swf_startsymbol()
  13207. swf_textwidth()
  13208. swf_translate()
  13209. swf_viewport()
  13210. snmp_get_quick_print()
  13211. snmp_set_quick_print()
  13212. snmpget()
  13213. snmprealwalk()
  13214. snmpset()
  13215. snmpwalk()
  13216. snmpwalkoid()
  13217. socket_accept()
  13218. socket_bind()
  13219. socket_clear_error()
  13220. socket_close()
  13221. socket_connect()
  13222. socket_create_listen()
  13223. socket_create_pair()
  13224. socket_create()
  13225. socket_get_option()
  13226. socket_getpeername()
  13227. socket_getsockname()
  13228. socket_iovec_add()
  13229. socket_iovec_alloc()
  13230. socket_iovec_delete()
  13231. socket_iovec_fetch()
  13232. socket_iovec_free()
  13233. socket_iovec_set()
  13234. socket_last_error()
  13235. socket_listen()
  13236. socket_read()
  13237. socket_readv()
  13238. socket_recv()
  13239. socket_recvfrom()
  13240. socket_recvmsg()
  13241. socket_select()
  13242. socket_send()
  13243. socket_sendmsg()
  13244. socket_sendto()
  13245. socket_set_block()
  13246. socket_set_nonblock()
  13247. socket_set_option()
  13248. socket_shutdown()
  13249. socket_strerror()
  13250. socket_write()
  13251. socket_writev()
  13252. stream_context_create()
  13253. stream_context_get_options()
  13254. stream_context_set_option()
  13255. stream_context_set_params()
  13256. stream_copy_to_stream()
  13257. stream_filter_append()
  13258. stream_filter_prepend()
  13259. stream_filter_register()
  13260. stream_get_filters()
  13261. stream_get_line()
  13262. stream_get_meta_data()
  13263. stream_get_transports()
  13264. stream_get_wrappers()
  13265. stream_register_wrapper()
  13266. stream_select()
  13267. stream_set_blocking()
  13268. stream_set_timeout()
  13269. stream_set_write_buffer()
  13270. stream_socket_accept()
  13271. stream_socket_client()
  13272. stream_socket_get_name()
  13273. stream_socket_server()
  13274. stream_wrapper_register()
  13275. addcslashes()
  13276. addslashes()
  13277. bin2hex()
  13278. chop()
  13279. chr()
  13280. chunk_split()
  13281. convert_cyr_string()
  13282. count_chars()
  13283. crc32()
  13284. crypt()
  13285. echo()
  13286. explode()
  13287. fprintf()
  13288. get_html_translation_table()
  13289. hebrev()
  13290. hebrevc()
  13291. html_entity_decode()
  13292. htmlentities()
  13293. htmlspecialchars()
  13294. implode()
  13295. join()
  13296. levenshtein()
  13297. localeconv()
  13298. ltrim()
  13299. md5_file()
  13300. md5()
  13301. metaphone()
  13302. money_format()
  13303. nl_langinfo()
  13304. nl2br()
  13305. number_format()
  13306. ord()
  13307. parse_str()
  13308. print()
  13309. printf()
  13310. quoted_printable_decode()
  13311. quotemeta()
  13312. rtrim()
  13313. setlocale()
  13314. sha1_file()
  13315. sha1()
  13316. similar_text()
  13317. soundex()
  13318. sprintf()
  13319. sscanf()
  13320. str_ireplace()
  13321. str_pad()
  13322. str_repeat()
  13323. str_replace()
  13324. str_rot13()
  13325. str_shuffle()
  13326. str_split()
  13327. str_word_count()
  13328. strcasecmp()
  13329. strchr()
  13330. strcmp()
  13331. strcoll()
  13332. strcspn()
  13333. strip_tags()
  13334. stripcslashes()
  13335. stripos()
  13336. stripslashes()
  13337. stristr()
  13338. strlen()
  13339. strnatcasecmp()
  13340. strnatcmp()
  13341. strncasecmp()
  13342. strncmp()
  13343. strpos()
  13344. strrchr()
  13345. strrev()
  13346. strripos()
  13347. strrpos()
  13348. strspn()
  13349. strstr()
  13350. strtok()
  13351. strtolower()
  13352. strtoupper()
  13353. strtr()
  13354. substr_compare()
  13355. substr_count()
  13356. substr_replace()
  13357. substr()
  13358. trim()
  13359. ucfirst()
  13360. ucwords()
  13361. vprintf()
  13362. vsprintf()
  13363. wordwrap()
  13364. sybase_affected_rows()
  13365. sybase_close()
  13366. sybase_connect()
  13367. sybase_data_seek()
  13368. sybase_deadlock_retry_count()
  13369. sybase_fetch_array()
  13370. sybase_fetch_assoc()
  13371. sybase_fetch_field()
  13372. sybase_fetch_object()
  13373. sybase_fetch_row()
  13374. sybase_field_seek()
  13375. sybase_free_result()
  13376. sybase_get_last_message()
  13377. sybase_min_client_severity()
  13378. sybase_min_error_severity()
  13379. sybase_min_message_severity()
  13380. sybase_min_server_severity()
  13381. sybase_num_fields()
  13382. sybase_num_rows()
  13383. sybase_pconnect()
  13384. sybase_query()
  13385. sybase_result()
  13386. sybase_select_db()
  13387. sybase_set_message_handler()
  13388. sybase_unbuffered_query()
  13389. tidy_access_count()
  13390. tidy_clean_repair()
  13391. tidy_config_count()
  13392. tidy_diagnose()
  13393. tidy_error_count()
  13394. tidy_get_body()
  13395. tidy_get_config()
  13396. tidy_get_error_buffer()
  13397. tidy_get_head()
  13398. tidy_get_html_ver()
  13399. tidy_get_html()
  13400. tidy_get_output()
  13401. tidy_get_release()
  13402. tidy_get_root()
  13403. tidy_get_status()
  13404. tidy_getopt()
  13405. tidy_is_xhtml()
  13406. tidy_load_config()
  13407. tidy_parse_file()
  13408. tidy_parse_string()
  13409. tidy_repair_file()
  13410. tidy_repair_string()
  13411. tidy_reset_config()
  13412. tidy_save_config()
  13413. tidy_set_encoding()
  13414. tidy_setopt()
  13415. tidy_warning_count()
  13416. token_get_all()
  13417. token_name()
  13418. base64_decode()
  13419. base64_encode()
  13420. get_meta_tags()
  13421. http_build_query()
  13422. parse_url()
  13423. rawurldecode()
  13424. rawurlencode()
  13425. urldecode()
  13426. urlencode()
  13427. doubleval()
  13428. empty()
  13429. floatval()
  13430. get_defined_vars()
  13431. get_resource_type()
  13432. gettype()
  13433. import_request_variables()
  13434. intval()
  13435. is_array()
  13436. is_bool()
  13437. is_callable()
  13438. is_double()
  13439. is_float()
  13440. is_int()
  13441. is_integer()
  13442. is_long()
  13443. is_null()
  13444. is_numeric()
  13445. is_object()
  13446. is_real()
  13447. is_resource()
  13448. is_scalar()
  13449. is_string()
  13450. isset()
  13451. print_r()
  13452. serialize()
  13453. settype()
  13454. strval()
  13455. unserialize()
  13456. unset()
  13457. var_dump()
  13458. var_export()
  13459. vpopmail_add_alias_domain_ex()
  13460. vpopmail_add_alias_domain()
  13461. vpopmail_add_domain_ex()
  13462. vpopmail_add_domain()
  13463. vpopmail_add_user()
  13464. vpopmail_alias_add()
  13465. vpopmail_alias_del_domain()
  13466. vpopmail_alias_del()
  13467. vpopmail_alias_get_all()
  13468. vpopmail_alias_get()
  13469. vpopmail_auth_user()
  13470. vpopmail_del_domain_ex()
  13471. vpopmail_del_domain()
  13472. vpopmail_del_user()
  13473. vpopmail_error()
  13474. vpopmail_passwd()
  13475. vpopmail_set_user_quota()
  13476. w32api_deftype()
  13477. w32api_init_dtype()
  13478. w32api_invoke_function()
  13479. w32api_register_function()
  13480. w32api_set_call_method()
  13481. wddx_add_vars()
  13482. wddx_deserialize()
  13483. wddx_packet_end()
  13484. wddx_packet_start()
  13485. wddx_serialize_value()
  13486. wddx_serialize_vars()
  13487. utf8_decode()
  13488. utf8_encode()
  13489. xml_error_string()
  13490. xml_get_current_byte_index()
  13491. xml_get_current_column_number()
  13492. xml_get_current_line_number()
  13493. xml_get_error_code()
  13494. xml_parse_into_struct()
  13495. xml_parse()
  13496. xml_parser_create_ns()
  13497. xml_parser_create()
  13498. xml_parser_free()
  13499. xml_parser_get_option()
  13500. xml_parser_set_option()
  13501. xml_set_character_data_handler()
  13502. xml_set_default_handler()
  13503. xml_set_element_handler()
  13504. xml_set_end_namespace_decl_handler()
  13505. xml_set_external_entity_ref_handler()
  13506. xml_set_notation_decl_handler()
  13507. xml_set_object()
  13508. xml_set_processing_instruction_handler()
  13509. xml_set_start_namespace_decl_handler()
  13510. xml_set_unparsed_entity_decl_handler()
  13511. xmlrpc_decode_request()
  13512. xmlrpc_decode()
  13513. xmlrpc_encode_request()
  13514. xmlrpc_encode()
  13515. xmlrpc_get_type()
  13516. xmlrpc_parse_method_descriptions()
  13517. xmlrpc_server_add_introspection_data()
  13518. xmlrpc_server_call_method()
  13519. xmlrpc_server_create()
  13520. xmlrpc_server_destroy()
  13521. xmlrpc_server_register_introspection_callback()
  13522. xmlrpc_server_register_method()
  13523. xmlrpc_set_type()
  13524. xslt_create()
  13525. xslt_errno()
  13526. xslt_error()
  13527. xslt_free()
  13528. xslt_process()
  13529. xslt_set_base()
  13530. xslt_set_encoding()
  13531. xslt_set_error_handler()
  13532. xslt_set_log()
  13533. xslt_set_sax_handler()
  13534. xslt_set_sax_handlers()
  13535. xslt_set_scheme_handler()
  13536. xslt_set_scheme_handlers()
  13537. yaz_addinfo()
  13538. yaz_ccl_conf()
  13539. yaz_ccl_parse()
  13540. yaz_close()
  13541. yaz_connect()
  13542. yaz_database()
  13543. yaz_element()
  13544. yaz_errno()
  13545. yaz_error()
  13546. yaz_get_option()
  13547. yaz_hits()
  13548. yaz_itemorder()
  13549. yaz_present()
  13550. yaz_range()
  13551. yaz_record()
  13552. yaz_scan_result()
  13553. yaz_scan()
  13554. yaz_schema()
  13555. yaz_search()
  13556. yaz_set_option()
  13557. yaz_sort()
  13558. yaz_syntax()
  13559. yaz_wait()
  13560. yp_all()
  13561. yp_cat()
  13562. yp_err_string()
  13563. yp_errno()
  13564. yp_first()
  13565. yp_get_default_domain()
  13566. yp_master()
  13567. yp_match()
  13568. yp_next()
  13569. yp_order()
  13570. zip_close()
  13571. zip_entry_close()
  13572. zip_entry_compressedsize()
  13573. zip_entry_compressionmethod()
  13574. zip_entry_filesize()
  13575. zip_entry_name()
  13576. zip_entry_open()
  13577. zip_entry_read()
  13578. zip_open()
  13579. zip_read()
  13580. gzclose()
  13581. gzcompress()
  13582. gzdeflate()
  13583. gzencode()
  13584. gzeof()
  13585. gzfile()
  13586. gzgetc()
  13587. gzgets()
  13588. gzgetss()
  13589. gzinflate()
  13590. gzopen()
  13591. gzpassthru()
  13592. gzputs()
  13593. gzread()
  13594. gzrewind()
  13595. gzseek()
  13596. gztell()
  13597. gzuncompress()
  13598. gzwrite()
  13599. readgzfile()
  13600. zlib_get_coding_type()
  13601. ;
  13602. ;
  13603. ; -----------------------------------------------------------------------------
  13604. ;  user-defined templates
  13605. ; -----------------------------------------------------------------------------
  13606.